Skip to content

Commit

Permalink
Fix CMD invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-s committed Dec 9, 2024
1 parent 3582e44 commit f327307
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: build and install conda package
env:
LIBRARY_PATH: ${{ github.workspace }}/../sbcl/src/runtime
MSYS2_CMD: "D:\\a\\_temp\\setup-msys2\\msys2.CMD -c"
MSYS2_CMD: D:\a\_temp\setup-msys2\msys2.CMD
shell: pwsh
run: |
conda install conda-build
Expand Down
8 changes: 4 additions & 4 deletions recipe/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ pushd lib
mkdir build
pushd build
# Build libsbcl_librarian
& $env:MSYS2_CMD "echo 'hello'"
& $env:MSYS2_CMD "cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -G 'MSYS Makefiles' .."
& $env:MSYS2_CMD "cmake --build ."
& $env:MSYS2_CMD "cmake --install . --prefix=$PREFIX"
& $env:MSYS2_CMD -c "echo 'hello'"
& $env:MSYS2_CMD -c "cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -G 'MSYS Makefiles' .."
& $env:MSYS2_CMD -c "cmake --build ."
& $env:MSYS2_CMD -c "cmake --install . --prefix=$PREFIX"
popd
popd

Expand Down

0 comments on commit f327307

Please sign in to comment.