Skip to content

Commit

Permalink
tiny improvement to generate.cmd (just making sure you get the same e…
Browse files Browse the repository at this point in the history
…xperience even when calling one of the RPs scripts)
  • Loading branch information
Johannes Bader committed Aug 8, 2017
1 parent 1e7dd01 commit 377f174
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/generate.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ setlocal
:: help requested?
set pot_help=%1%2
if "%pot_help%"=="" (set req_help=T)
if "%2"=="help" (set req_help=T)
if "%2"=="-help" (set req_help=T)
if "%2"=="--help" (set req_help=T)
if "%2"=="/help" (set req_help=T)
if "%pot_help%"=="help" (set req_help=T)
if "%pot_help%"=="-help" (set req_help=T)
if "%pot_help%"=="--help" (set req_help=T)
Expand All @@ -25,7 +29,6 @@ if not "%req_help%" == "" (
echo Example: generate.cmd monitor/data-plane 1.1.0 olydis new-cool-feature
echo.
echo To display this help, run either of
echo generate.cmd
echo generate.cmd help
echo generate.cmd -help
echo generate.cmd --help
Expand Down

0 comments on commit 377f174

Please sign in to comment.