浏览代码

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