@cryptotaxi247 / netdata-1 / commits / beaeafc1f

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.

Austin S. Hemmelgarn committed Jan 22, 2021 at 09:35 UTC beaeafc1f9d6c02388fd38b63e4daee7aee15870
1 file changed +2 -2
.travis/trigger_docker_build.sh
+2 -2
@@ -1,7 +1,7 @@
1 #!/bin/sh
2
3 -token="${0}"
4 -version="${1}"
3 +token="${1}"
4 +version="${2}"
5
6 resp="$(curl -X POST \
7 -H 'Accept: application/vnd.github.v3+json' \