Skip to content

Commit

Permalink
Removed wildcard processing from startGroovy.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
emesx authored and daniellansun committed Sep 16, 2017
1 parent 0a612c2 commit a86a4f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/startGroovy.bat
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ goto process_arg

:get_arg
rem remove quotes around first arg
for %%i in (%1) do set _ARG=%_ARG% %%~i
for /f %%i in (%1) do set _ARG=%_ARG% %%~i
rem set the remaining args
set _ARGS=%2
rem remove the leading space we'll add the first time
Expand Down

1 comment on commit a86a4f1

@daniellansun
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.