Skip to content

Commit

Permalink
coq_wrapper: pass COQBIN as the last argument
Browse files Browse the repository at this point in the history
  • Loading branch information
gares authored Sep 26, 2023
1 parent 9efe1bf commit e309123
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linux/snap/coq_wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export LD_LIBRARY_PATH="$COQSTUBLIBS:$LD_LIBRARY_PATH"
if [ "$SELF" == "bash" -o "$SELF" == "sh" ]; then # for debugging the snap
exec $SELF "$@"
elif [ "$SELF" == "coq_makefile" ]; then
exec $COQBIN/$SELF COQBIN = "$COQBIN/" "$@"
exec $COQBIN/$SELF "$@" COQBIN = "$COQBIN/"
else
exec $COQBIN/$SELF "$@"
fi
fi

0 comments on commit e309123

Please sign in to comment.