Skip to content
Snippets Groups Projects
Commit e0351f77 authored by Lennart Kramer's avatar Lennart Kramer
Browse files

remove argument name collusion

parent 15c43488
Branches
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ IMAGENAME="$5/goemaxima:$3" ...@@ -15,7 +15,7 @@ IMAGENAME="$5/goemaxima:$3"
docker pull "${IMAGENAME}" docker pull "${IMAGENAME}"
# build it # build it
if [ "$stack" = "2017121800" ]; then if [ "$stack" = "2017121800" ]; then
docker build -t "${IMAGENAME}" --build-arg MAXIMA_VERSION="$2" --build-arg SBCL_VERSION="$1" --build-arg LIB_PATH="$4" --build-arg "/opt/maxima/assets/maximalocal.mac" . || exit 1 docker build -t "${IMAGENAME}" --build-arg MAXIMA_VERSION="$2" --build-arg SBCL_VERSION="$1" --build-arg LIB_PATH="$4" --build-arg "MAX_LIB_PATH=/opt/maxima/assets/maximalocal.mac" . || exit 1
else else
docker build -t "${IMAGENAME}" --build-arg MAXIMA_VERSION="$2" --build-arg SBCL_VERSION="$1" --build-arg LIB_PATH="$4" . || exit 1 docker build -t "${IMAGENAME}" --build-arg MAXIMA_VERSION="$2" --build-arg SBCL_VERSION="$1" --build-arg LIB_PATH="$4" . || exit 1
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment