Skip to content

Commit 7bf6d95

Browse files
committed
Fix path issue in build_installer.bat script
1 parent 4d1ab3e commit 7bf6d95

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/build_installer.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ REM ======================================================
88
setlocal enabledelayedexpansion
99
call %~dp0utils GetScriptPath SCRIPTPATH
1010
call %FUNC% SetEnvVars
11-
set ROOTPATH=%SCRIPTPATH%\..\
11+
set ROOTPATH=%SCRIPTPATH%\..
1212
cd %ROOTPATH%
1313

1414
@REM CI_WPI=Winpython64-3.9.10.0dot.exe => PYSUFFIX=Py39
@@ -37,7 +37,7 @@ wix build "wix\%CI_DST%-%CI_VER%.wxs" -ext WixToolset.UI.wixext
3737
@REM Create release directory
3838
@REM ===========================================================================
3939
if not exist "%ROOTPATH%\releases" ( mkdir "%ROOTPATH%\releases" )
40-
set RLSPTH=%ROOTPATH%\releases\%CI_DST%-%CI_VER%_release\
40+
set RLSPTH=%ROOTPATH%\releases\%CI_DST%-%CI_VER%_release
4141
if exist "%RLSPTH%" ( rmdir /s /q "%RLSPTH%" )
4242
mkdir %RLSPTH%
4343
move /Y %ROOTPATH%\wix\%CI_DST%-%CI_VER%.msi %RLSPTH%\%CI_DST%-%CI_VER%_%PYSUFFIX%.msi

0 commit comments

Comments
 (0)