Преглед изворни кода

Exit return code 0 when passing -h cmd line option

Markus Hennecke пре 5 година
родитељ
комит
c77d808f6d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      autoupdate.pl

+ 1 - 1
autoupdate.pl

@@ -768,7 +768,7 @@ sub usage {
 	    . " \t\t\tIf the filename is '-' the input will be\n"
 	    . " \t\t\tread from stdin\n"
 	    . " -h|--help\t\tShow this help\n";
-	exit (1);
+	exit ($show_help ? 0 : 1);
 }
 
 ##############################################################################