From f7e791a6539aaf1bbafbbe8738841396296a7874 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Thu, 23 Aug 2018 22:29:36 -0700 Subject: Add a 120 second sleep to the dependency bumping See if waiting 2 minutes gives rubygems time to catch up. Signed-off-by: Tim Smith --- .expeditor/update_dep.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.expeditor/update_dep.sh b/.expeditor/update_dep.sh index 14ef80463b..c9097d3dea 100644 --- a/.expeditor/update_dep.sh +++ b/.expeditor/update_dep.sh @@ -15,6 +15,11 @@ branch="expeditor/${GEM_NAME}_${VERSION}" git checkout -b "$branch" bundle install + +# it appears that the gem that triggers this script fires off this script before +# the gem is actually available via bundler on rubygems.org. +sleep 120 + bundle exec rake dependencies:update git add . -- cgit v1.2.1