exit code must be >= 0 (#35311)

This commit is contained in:
Eric - CAP-REL
2025-09-12 02:29:23 +02:00
committed by GitHub
parent a0116f6cd8
commit 1f8b5db2c7
25 changed files with 51 additions and 51 deletions

View File

@@ -64,7 +64,7 @@ if (empty($argv[1])) {
print "Usage: $script_file nbofrecord\n";
print "Usage: $script_file 100\n";
print "\n";
exit(-1);
exit(1);
}
define('GEN_NUMBER_COMMANDE', ((int) $argv[1]) ?? 10);