Skip to content

Commit 4237824

Browse files
committed
Fix exit error code
1 parent 9555eb0 commit 4237824

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

flacsfx.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func main() {
142142
_, err = fileWriter.Write(flacRaw)
143143
if err != nil {
144144
os.Stdout.WriteString("There was a problem writing the FLAC stream to the file.")
145-
os.Exit(1)
145+
os.Exit(4)
146146
}
147147
os.Exit(0)
148148
}

0 commit comments

Comments
 (0)