Skip to content

Commit

Permalink
logging to standard error as well
Browse files Browse the repository at this point in the history
Signed-off-by: Sachin Pisal <[email protected]>
  • Loading branch information
sacpis committed Jan 2, 2025
1 parent d11d8c4 commit 1f2bd4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build_cudaq.sh
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ fi
# Check if cmake succeeded
if [ "$status" -ne 0 ]; then
echo -e "\e[01;31mError: CMake configuration failed. Please check logs/cmake_error.txt for details.\e[0m" >&2
cat logs/cmake_error.txt
cat logs/cmake_error.txt >&2
cd "$working_dir" && (return 0 2>/dev/null) && return 1 || exit 1
fi

Expand Down

0 comments on commit 1f2bd4b

Please sign in to comment.