From beaeafc1f9d6c02388fd38b63e4daee7aee15870 Mon Sep 17 00:00:00 2001 From: "Austin S. Hemmelgarn" Date: Fri, 22 Jan 2021 09:35:04 -0500 Subject: [PATCH] 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. --- .travis/trigger_docker_build.sh | 4 ++-- 1 file 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' \