Skip to content

Commit

Permalink
More flailing about in powershell.
Browse files Browse the repository at this point in the history
  • Loading branch information
alliepiper committed Apr 5, 2024
1 parent 21742e6 commit 8297876
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ci/windows/build_common.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ function configure_preset {
# CMake must be invoked in the same directory as the presets file:
pushd ".."

echo "cmake --preset $PRESET $CMAKE_OPTIONS --log-level VERBOSE"
cmake --preset $PRESET $CMAKE_OPTIONS --log-level VERBOSE
$cmake_command = "cmake --preset $PRESET $CMAKE_OPTIONS --log-level VERBOSE"
echo "$cmake_command"
Invoke-Expression $cmake_command
$test_result = $LastExitCode

If ($test_result -ne 0) {
Expand Down

0 comments on commit 8297876

Please sign in to comment.