Skip to content

Commit 7c05531

Browse files
committed
fix bat file env var substitution
1 parent 53a3e19 commit 7c05531

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build directories
2-
build_*
2+
build*
33

44
# Pixi environment
55
.pixi

pixi/env.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
set CMAKE_GENERATOR="Visual Studio 17 2022"
2-
set BUILD_FOLDER=build_${PIXI_ENVIRONMENT_NAME}
3-
set EXE_PATH=$BUILD_FOLDER/RelWithDebInfo/rerun_ext_example
2+
set BUILD_FOLDER=build_%PIXI_ENVIRONMENT_NAME%
3+
set EXE_PATH=%BUILD_FOLDER%/RelWithDebInfo/rerun_ext_example

0 commit comments

Comments
 (0)