Skip to content

Commit 02601b2

Browse files
fingolfinjames-d-mitchell
authored andcommitted
Remove references to bin/gap.sh
GAP 4.13 drops it. Using gap directly works since 4.9
1 parent 1f77c1f commit 02601b2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ci/coverage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def warn_exit(msg):
3838
QUIT_GAP(0);
3939
'''
4040

41-
_RUN_GAP = '../../bin/gap.sh -A -q -m 1g -o 2g -T --cover ' + _DIR + '/profile.gz -c "' + _COMMANDS.replace('"', '\\"') + '"'
41+
_RUN_GAP = '../../gap -A -q -m 1g -o 2g -T --cover ' + _DIR + '/profile.gz -c "' + _COMMANDS.replace('"', '\\"') + '"'
4242

4343
try:
4444
pro = subprocess.Popen(_RUN_GAP, shell=True)

ci/docker-test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ env | grep -v "^LS_COLORS"
5858
# Common curl settings
5959
CURL="curl --connect-timeout 5 --max-time 40 --retry 5 --retry-delay 0 -L"
6060
TESTLOG="$GAP_HOME/testlog.txt"
61-
GAPSH="$GAP_HOME/bin/gap.sh"
61+
GAPSH="$GAP_HOME/gap"
6262
DIG_DIR="$GAP_HOME/pkg/digraphs"
6363

6464
################################################################################

scripts/check-code-coverage.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ printf "\033[1m";
5858
printf "Running Test(\"$1\"); in GAP . . .\n";
5959
printf "\033[0m";
6060
printf "\033[2m";
61-
~/gap/bin/gap.sh -A -m 1g -T <<< "Test(\"$1\"); quit;";
61+
~/gap/gap -A -m 1g -T <<< "Test(\"$1\"); quit;";
6262
printf "\033[0m";
6363
6464
printf "\033[1m";

0 commit comments

Comments
 (0)