]> granicus.if.org Git - curl/commitdiff
buildconf.bat: Added display of usage text with -help
authorSteve Holme <steve_holme@hotmail.com>
Wed, 5 Aug 2015 05:41:40 +0000 (06:41 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Wed, 5 Aug 2015 05:47:47 +0000 (06:47 +0100)
buildconf.bat

index e54ce743c97bd0c27c491bac83eecdc12b6bd6b3..fe4b75d53ea450d826938a519ed23524e6f516c5 100644 (file)
@@ -30,6 +30,11 @@ rem This file is not included or required for curl's release archives or daily
 rem snapshot archives.
 
 :begin
+  rem Display the help
+  if /i "%~1" == "-?" goto syntax
+  if /i "%~1" == "-h" goto syntax
+  if /i "%~1" == "-help" goto syntax
+
   if not exist GIT-INFO goto nogitinfo
 
 :start
@@ -56,6 +61,12 @@ cd ..
 :end_c_ares
 goto success
 
+:syntax
+  rem Display the help
+  echo.
+  echo Usage: buildconf
+  goto error
+
 :nogitinfo
   echo.
   echo ERROR: This file shall only be used with a curl git tree checkout.