1
0

refactor: errors

This commit is contained in:
2024-02-20 11:37:19 +00:00
parent 4e92950929
commit 6036211172
6 changed files with 10 additions and 10 deletions

6
cache/cache.go vendored
View File

@ -55,10 +55,10 @@ func DownloadRootFS(path, file string) (err error) {
resp, err := grab.Get(tmp, fileurl)
if err != nil {
err = fmt.Errorf("Cannot download %s. It looks like you need "+
err = fmt.Errorf("cannot download %s. It looks like you need "+
"to generate it manually and place it "+
"to ~/.out-of-tree/images/. "+
"Check documentation for additional information.",
"to ~/.out-of-tree/images/; "+
"check documentation for additional information",
fileurl)
return
}