1
0

fix: filename is already full path

This commit is contained in:
2023-05-13 12:50:26 +00:00
parent 05f210494a
commit dc8d667930
2 changed files with 2 additions and 2 deletions

2
cache/cache.go vendored
View File

@@ -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)
}