1
0

fix: filename is already full path

This commit is contained in:
2023-05-13 12:50:26 +00:00
والد 05f210494a
کامیت dc8d667930
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده

2
cache/cache.go فروخته شده
مشاهده پرونده

@ -82,5 +82,5 @@ func DownloadDebianCache(cachePath string) (err error) {
return
}
return os.Rename(filepath.Join(tmp, resp.Filename), cachePath)
return os.Rename(resp.Filename, cachePath)
}

2
cache/cache_test.go فروخته شده
مشاهده پرونده

@ -29,7 +29,7 @@ func TestDownloadQemuImage(t *testing.T) {
}
func TestDownloadDebianCache(t *testing.T) {
tmp, err := ioutil.TempDir("", "out-of-tree_")
tmp, err := fs.TempDir()
if err != nil {
return
}