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:
aitbc
2026-05-07 12:28:21 +02:00
parent 8007ce4e8a
commit b31bccccdd

View File

@@ -1026,5 +1026,3 @@ case "${1:-}" in
exit 1
;;
esac
main