summaryrefslogtreecommitdiff
path: root/Tools/ci-run.sh
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-05-03 07:40:52 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-05-03 07:40:52 +0200
commit2f493526d09ac8fa3d195bee14a3c9df5e649041 (patch)
tree972ab14343ecabd98ac9e11b95b2b83a132b4a15 /Tools/ci-run.sh
parent3caeb8edeb340dab24c78d3e2c8a230ba9e64ebd (diff)
downloadcython-2f493526d09ac8fa3d195bee14a3c9df5e649041.tar.gz
Fix bash script syntax.
Diffstat (limited to 'Tools/ci-run.sh')
-rw-r--r--Tools/ci-run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/ci-run.sh b/Tools/ci-run.sh
index c051e8d17..82f52e0d4 100644
--- a/Tools/ci-run.sh
+++ b/Tools/ci-run.sh
@@ -104,7 +104,7 @@ python runtests.py \
$(if [ "$COVERAGE" == "1" ]; then echo " --coverage"; fi) \
$(if [ -z "$TEST_CODE_STYLE" ]; then echo " -j7 "; fi)
-EXIT_CODE = $?
+EXIT_CODE=$?
ccache -s 2>/dev/null || true