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:
commit
1996bf810a
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue