Переглянути джерело

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);
 }
 
 ##############################################################################