fix(publish): Removes or from publish script (#340)
Fixes publish script Bumps release version
This commit is contained in:
parent
02d27036af
commit
5b7a4151c7
1 changed files with 6 additions and 2 deletions
|
|
@ -38,11 +38,15 @@ exit $?
|
||||||
|
|
||||||
:CMDSCRIPT
|
:CMDSCRIPT
|
||||||
|
|
||||||
IF "%~1" == "" or "%~1" == "release" (
|
IF "%~1" == "" (
|
||||||
|
SET config=-c Release
|
||||||
|
) ELSE (
|
||||||
|
IF "%~1" == "release" (
|
||||||
SET config=-c Release
|
SET config=-c Release
|
||||||
) ELSE (
|
) ELSE (
|
||||||
SET config=-c Debug
|
SET config=-c Debug
|
||||||
)
|
)
|
||||||
|
)
|
||||||
|
|
||||||
IF "%~2" == "" (
|
IF "%~2" == "" (
|
||||||
SET os=-r win-x64
|
SET os=-r win-x64
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue