2
0
mirror of https://github.com/linka-cloud/d2vm.git synced 2025-04-20 09:37:40 +00:00

Compare commits

..

No commits in common. "main" and "v0.3.0" have entirely different histories.
main ... v0.3.0

2 changed files with 1 additions and 4 deletions

View File

@ -42,9 +42,6 @@ jobs:
restore-keys: |
${{ runner.os }}-tests-
- name: Run linter
run: make vet
- name: Run tests
run: git --no-pager diff --exit-code HEAD~1 HEAD **/**.go templates/ || make tests

2
fs.go
View File

@ -43,7 +43,7 @@ func (f BootFS) IsSupported() bool {
func (f BootFS) Validate() error {
if !f.IsSupported() {
return fmt.Errorf("invalid boot filesystem: %s valid filesystems are: fat32, ext4", f)
fmt.Errorf("invalid boot filesystem: %s valid filesystems are: fat32, ext4", f)
}
return nil
}