Skip to content

Commit

Permalink
Merge pull request #201 from keizer619/test
Browse files Browse the repository at this point in the history
Apply space fix
  • Loading branch information
hevayo authored Jan 19, 2022
2 parents 64a8164 + 45f931d commit f968386
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/bin/bal.bat
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ set RUN_BALLERINA=true
set FILE_PATH=%CURRENT_PATH%..\distributions\ballerina-version
set JAVA_CMD=java
if "%1" == "dist" set dist=true
if "%2" == "dist" set dist=true
if "%~2" == "dist" set dist=true
if "%1" == "update" set dist=true
if "%2" == "update" set dist=true
if "%~2" == "update" set dist=true
if "%1" == "build" set dist=true
if "%1" == "update" set update=true
if "%1" == "build" set build=true
Expand Down Expand Up @@ -100,7 +100,7 @@ if "%RUN_BALLERINA%" == "true" (
)
set merge=false
if "%1" == "help" (
if "%2" == "" set merge=true
if "%~2" == "" set merge=true
)
if "%1" == "-h" set merge=true
if "%1" == "--help" set merge=true
Expand Down

0 comments on commit f968386

Please sign in to comment.