Skip to content

Commit 0e93f1e

Browse files
committed
println -> print os.stderr
1 parent 7e0814a commit 0e93f1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/utils.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ func ZipDirectory(destination string, source string) (err error) {
415415
if err != nil {
416416
log.Fatalln(err)
417417
}
418-
fmt.Println()
418+
fmt.Fprintf(os.Stderr, "\n")
419419
return nil
420420
}
421421

@@ -457,6 +457,6 @@ func UnzipDirectory(destination string, source string) error {
457457
dstFile.Close()
458458
fileInArchive.Close()
459459
}
460-
fmt.Println()
460+
fmt.Fprintf(os.Stderr, "\n")
461461
return nil
462462
}

0 commit comments

Comments
 (0)