sotn-disk: show error when the command is not recognised

This commit is contained in:
Luciano Ciccariello 2023-01-24 02:08:52 +00:00
parent 39af359431
commit 7de276c335

View File

@ -49,6 +49,9 @@ func main() {
inPath := os.Args[3]
fileListPath := os.Args[4]
err = makeDisc(cuePath, inPath, fileListPath)
default:
fmt.Printf("Invalid command: %s\n\n", cmd)
printHelp()
}
if err != nil {