summaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2021-01-22 09:35:04 -0500
committerGitHub <noreply@github.com>2021-01-22 09:35:04 -0500
commitbeaeafc1f9d6c02388fd38b63e4daee7aee15870 (patch)
treef69402d78c5d7159c3dd341b46eb5bb24eeabcde /.travis
parentd0a54068a3ba00bcd7b29433dee8894cabf17fa3 (diff)
Fixed argument handling in `.travis/trigger_docker_build.sh`. (#10546)
This should have gone in with #10545 but I forgot to commit it after testing before opening the PR.
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/trigger_docker_build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis/trigger_docker_build.sh b/.travis/trigger_docker_build.sh
index bc0966c3b7..7a3dd5088e 100755
--- a/.travis/trigger_docker_build.sh
+++ b/.travis/trigger_docker_build.sh
@@ -1,7 +1,7 @@
#!/bin/sh
-token="${0}"
-version="${1}"
+token="${1}"
+version="${2}"
resp="$(curl -X POST \
-H 'Accept: application/vnd.github.v3+json' \