Skip to content

Commit

Permalink
Dropped Bullseye
Browse files Browse the repository at this point in the history
  • Loading branch information
JanWielemaker committed Aug 15, 2024
1 parent 053b550 commit dc50681
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ test()

echo "### Testing $img"
got=$(docker run -it --rm $img swipl --version)
if echo $got | fgrep -q $VERSION; then
if echo $got | grep -qF $VERSION; then
echo "Found correct version"
else
echo "ERROR: Got $got, expected version $VERSION"
Expand Down Expand Up @@ -93,7 +93,7 @@ hash=$(curl -s https://www.swi-prolog.org/download/$series/src/swipl-$VERSION.ta
echo "SHA256=$hash"

dockerfiles=
for base in bookworm bullseye; do
for base in bookworm; do
sed -i -e "s/$from/$VERSION/" \
-e "s/SWIPL_CHECKSUM=[a-f0-9]*/SWIPL_CHECKSUM=$hash/" \
$VERSION/$base/Dockerfile
Expand Down

0 comments on commit dc50681

Please sign in to comment.