Skip to content

Commit

Permalink
Fix usage of # as comment marker in batch file (#60)
Browse files Browse the repository at this point in the history
This patch fixes a warning when running the batch file:

```
> mill.bat mill.idea.GenIdea/idea
`#` is not recognized as an internal or external command, operable program or batch file.

```

Pull request: #60
  • Loading branch information
tautologicc authored Feb 1, 2024
1 parent 0e979ae commit df55f35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions millw.bat
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ set MILL=%MILL_DOWNLOAD_PATH%\!MILL_VERSION!.bat

if not exist "%MILL%" (
set VERSION_PREFIX=%MILL_VERSION:~0,4%
# Since 0.5.0
rem Since 0.5.0
set DOWNLOAD_SUFFIX=-assembly
# Since 0.11.0
rem Since 0.11.0
set DOWNLOAD_FROM_MAVEN=1
if [!VERSION_PREFIX!]==[0.0.] (
set DOWNLOAD_SUFFIX=
Expand Down

0 comments on commit df55f35

Please sign in to comment.