From bc8cfd72adac33ff8f40e590c941dca1643421fe Mon Sep 17 00:00:00 2001 From: Eric Zhang Date: Mon, 10 Jun 2024 21:46:28 -0400 Subject: [PATCH] Fix typo --- ci/test.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test.bash b/ci/test.bash index fa34f0a..bbac184 100755 --- a/ci/test.bash +++ b/ci/test.bash @@ -16,7 +16,7 @@ max_attempts=3 count=0 while [ $count -lt $max_attempts ]; do - CROSS test --target $TARGET_TRIPLE + $CROSS test --target $TARGET_TRIPLE status=$? if [ $status -eq 0 ]; then echo "Test passed"