Fix unconditional main call causing --help to run training
Removed unconditional 'main' call after case statement. The case statement already handles the empty string case by calling main, so the extra call was causing all command-line arguments to be ignored and training to run.
This commit is contained in:
@@ -1026,5 +1026,3 @@ case "${1:-}" in
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
main
|
||||
|
||||
Reference in New Issue
Block a user