Fix tests

This commit is contained in:
cytopia
2022-03-25 00:53:26 +01:00
parent 1609e8ea61
commit b6f926cf8a
2 changed files with 3 additions and 3 deletions

View File

@@ -174,7 +174,7 @@ test: test-integration
.PHONY: test-integration
test-integration:
./tests/test.sh $(IMAGE) $(ARCH) $(VERSION) $(FLAVOUR)
./tests/test.sh $(IMAGE) $(ARCH) $(VERSION) $(FLAVOUR) $(DOCKER_TAG)
# -------------------------------------------------------------------------------------------------

View File

@@ -30,8 +30,8 @@ CWD="$(cd -P -- "$(dirname -- "$0")" && pwd -P)"
###
### Sanity check
###
if [ "${#}" -ne "4" ]; then
echo "Usage: start.ci <image> <arch> <version> <flavour>"
if [ "${#}" -ne "5" ]; then
echo "Usage: start.ci <image> <arch> <version> <flavour> <tag>"
exit 1
fi