minor script fixes

mypy has no fix function so it shouldn't be called as part of the fix
process.
This commit is contained in:
ducklet 2020-11-14 14:38:09 +01:00
parent acd1f949d2
commit 503f367a0d
2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,7 @@
#!/bin/sh -eu
tag=latest
cd "$RUN_DIR"
contextdir="$RUN_DIR"/docker
@ -12,4 +14,4 @@ fi
set -x
docker build "$@" --tag "$image":latest "$contextdir"
docker build "$@" --tag "$image":"$tag" "$contextdir"