Skip to content

Commit

Permalink
Apply space fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keizer619 committed Jan 19, 2022
1 parent f59fb2b commit 45f931d
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 45f931d

Please sign in to comment.