Merge pull request #415 from j0shua/master

adding exit 1 when there are not enough command line vars passed to `…
This commit is contained in:
priyawadhwa 2018-10-26 14:23:53 -07:00 committed by GitHub
commit 1996bf810a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ set -e
if [ $# -ne 3 ];
then echo "Usage: run_in_docker.sh <path to Dockerfile> <context directory> <image tag>"
exit 1
fi
dockerfile=$1