Skip to content

Commit

Permalink
fix: some coq_version regexp (given the tag latest-native-flambda)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmd committed Feb 5, 2025
1 parent ea62219 commit fe45b64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ if test -z "$INPUT_CUSTOM_IMAGE"; then

ROCQ_PREFIX="coqorg/coq"

else
else # e.g. 9 or dev

ROCQ_PREFIX="rocq/rocq-prover"

Expand All @@ -136,7 +136,7 @@ if test -z "$INPUT_CUSTOM_IMAGE"; then

COQ_IMAGE="$ROCQ_PREFIX:$INPUT_COQ_VERSION"

elif printf "%s" "$INPUT_COQ_VERSION" | grep -e '.-native$' -q; then
elif printf "%s" "$INPUT_COQ_VERSION" | grep -e '.-native' -q; then

COQ_IMAGE="$ROCQ_PREFIX:$INPUT_COQ_VERSION"

Expand Down

0 comments on commit fe45b64

Please sign in to comment.