Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jawalonoski committed Jun 8, 2022
1 parent d90b4e3 commit c5aa174
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions run_synthea.bat
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ IF "%~1" == "" (
SET syntheaArgs=

:loop
SET syntheaArgs=!syntheaArgs!'%1',
@rem Trailing comma ok, don't need to remove it
ECHO ARG = %1
if "%~1"=="" goto run
SET syntheaArgs=!syntheaArgs!'%~1',
shift
if not "%~1"=="" goto loop
goto loop

:run
ECHO syntheaArgs = !syntheaArgs!
gradlew.bat run -Params="[!syntheaArgs!]"
)

0 comments on commit c5aa174

Please sign in to comment.