More flailing about in powershell.

This commit is contained in:
Allison Piper
2024-04-05 21:03:16 +00:00
parent 21742e6bea
commit 829787649b

View File

@@ -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) {