Skip to content

Commit

Permalink
allow unbound nix var
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton-4 authored Sep 24, 2024
1 parent 948636c commit 214f11c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci_scripts/all_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ os_info=$(lsb_release -a 2>/dev/null)
set -e

# Skip Go tests if os is Ubuntu and we're not inside nix. This avoids a segfault on CI. See https://github.com/roc-lang/examples/issues/164
if echo "$os_info" | grep -q "Ubuntu" && [ -z "$IN_NIX_SHELL" ]; then
if echo "$os_info" | grep -q "Ubuntu" && [ -z "${IN_NIX_SHELL}" ]; then
echo "Skipping Go test due to https://github.com/roc-lang/examples/issues/164"
else
echo "Running Go test..."
Expand Down

0 comments on commit 214f11c

Please sign in to comment.