Skip to content

Commit

Permalink
Fix tesseract hook build args
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong authored Jul 13, 2020
1 parent f32af86 commit 542726b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tesseract/hooks/build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ echo "------ HOOK START - BUILD -------"
printenv

if [ "$DOCKER_TAG" = "foxy" ] ; then
docker build --build-arg ROSDISTRO=$DOCKER_TAG ROS_BASE_TAG=$DOCKER_TAG -t $IMAGE_NAME .
docker build --build-arg ROSDISTRO=$DOCKER_TAG --build-arg ROS_BASE_TAG=$DOCKER_TAG -t $IMAGE_NAME .
else
docker build --build-arg ROSDISTRO=$DOCKER_TAG ROS_BASE_TAG=$DOCKER_TAG-perception -t $IMAGE_NAME .
docker build --build-arg ROSDISTRO=$DOCKER_TAG --build-arg ROS_BASE_TAG=$DOCKER_TAG-perception -t $IMAGE_NAME .
fi

0 comments on commit 542726b

Please sign in to comment.