Add files via upload

This commit is contained in:
Evan Su 2022-11-17 23:18:08 -05:00 committed by GitHub
parent 4dec146f83
commit e994186a0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -942,13 +942,8 @@ func work() {
}
// Open a temporary .zip for writing
file, err := os.CreateTemp("", "*.zip")
if err != nil { // Error, fall back to output folder
inputFile = strings.TrimSuffix(outputFile, ".pcv")
file, err = os.Create(inputFile)
} else { // No issues, use the temporary .zip
inputFile = file.Name()
}
inputFile = strings.TrimSuffix(outputFile, ".pcv")
file, err := os.Create(inputFile)
if err != nil { // Make sure file is writable
accessDenied("Write")
return