Skip to content

Commit

Permalink
dev/bisect.sh: fix typo; restore compat with older GAP versions (#5746)
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin authored Jun 18, 2024
1 parent c324920 commit 800b0c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev/bisect.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ make -j8 || exit 125
echo "HEAD: "$(git rev-parse HEAD)
echo "Running tests..."

if [-x bin/gap.sh ] ; then
if [ -x bin/gap.sh ] ; then
GAP=bin/gap.sh
else
GAP=./gap
Expand Down Expand Up @@ -132,9 +132,9 @@ fi;
# run the actual test
if Test("'${TESTFILE}'") then
Print("Commit is good\\n");
QuitGap(0);
QUIT_GAP(0);
else
Print("Commit is bad\\n");
QuitGap(1);
QUIT_GAP(1);
fi;
' | ${GAP} -A -b -q

0 comments on commit 800b0c0

Please sign in to comment.