println -> print os.stderr

This commit is contained in:
Zack Scholl 2022-07-07 10:46:49 -07:00
parent 7e0814a57e
commit 0e93f1e285
1 changed files with 2 additions and 2 deletions

View File

@ -415,7 +415,7 @@ func ZipDirectory(destination string, source string) (err error) {
if err != nil {
log.Fatalln(err)
}
fmt.Println()
fmt.Fprintf(os.Stderr, "\n")
return nil
}
@ -457,6 +457,6 @@ func UnzipDirectory(destination string, source string) error {
dstFile.Close()
fileInArchive.Close()
}
fmt.Println()
fmt.Fprintf(os.Stderr, "\n")
return nil
}