Skip to content

Commit

Permalink
Use backward slashes in SELF on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamefire committed Dec 15, 2023
1 parent d59f56f commit 89a03b0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/common_install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ REM - BOOST_CI_SRC_FOLDER
@ECHO ON

if not DEFINED SELF (
for /F "delims=" %%i in ('python %~dp0\get_libname.py') do set SELF=%%i
for /F "delims=" %%i in ('python %~dp0\get_libname.py') do (
set SELF=%%i
call set SELF=%%SELF:/=\%%
)
)
echo SELF=%SELF%
if "%SELF%" == "" EXIT /B 1
Expand Down

0 comments on commit 89a03b0

Please sign in to comment.