Fix paths and identifiers

This commit is contained in:
Daniel
2019-07-30 13:07:33 +02:00
parent ae79877a3f
commit c6332dda7d
4 changed files with 14 additions and 8 deletions

View File

@@ -83,7 +83,7 @@ func loadOrFetchFile(identifier string, fetch bool) (*File, error) {
}
// check download dir
err := utils.EnsureDirectory(downloadTmpPath, 0755)
err := utils.EnsureDirectory(downloadTmpPath, 0700)
if err != nil {
return nil, fmt.Errorf("could not prepare tmp directory for download: %s", err)
}