summaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorKonstantinos Natsakis <5933427+knatsakis@users.noreply.github.com>2020-04-16 14:00:45 +0300
committerGitHub <noreply@github.com>2020-04-16 14:00:45 +0300
commit2e7292a1a07c9a5e4ffed6d4a05b2d5c6cfc1aae (patch)
tree7cca893718fecc66a25f68edab3ad95903fc9544 /.travis
parent84101a234a6c3e138c6be3a9dc4c03a89e689333 (diff)
packaging/docker/publish.sh: Wait for tag to appear in hub.docker.com (#8713)
* packaging/docker/publish.sh: Wait for tag to be really published * Fix typo * .travis/utils.sh: Export defined functions too * packaging/docker/publish.sh: Keep shellcheck happy * packaging/docker/publish.sh: Fix typo
Diffstat (limited to '.travis')
-rw-r--r--.travis/utils.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis/utils.sh b/.travis/utils.sh
index 58ce47f0ae..d084a7aef3 100644
--- a/.travis/utils.sh
+++ b/.travis/utils.sh
@@ -12,6 +12,7 @@ tick() {
kill $PID
return $RET
}
+export -f tick
retry() {
local tries=$1
@@ -25,3 +26,4 @@ retry() {
return 1
}
+export -f retry