diff options
author | Tim Smith <tsmith@chef.io> | 2018-08-23 22:29:36 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-08-23 22:29:36 -0700 |
commit | f7e791a6539aaf1bbafbbe8738841396296a7874 (patch) | |
tree | c9ce3999b27744e1a9d4bca3be24cdc646ff3140 /.expeditor/update_dep.sh | |
parent | 2fb4f13b3e488d5f5147a09862221bc462f49035 (diff) | |
download | chef-f7e791a6539aaf1bbafbbe8738841396296a7874.tar.gz |
Add a 120 second sleep to the dependency bumpingsleep_expeditor
See if waiting 2 minutes gives rubygems time to catch up.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.expeditor/update_dep.sh')
-rw-r--r-- | .expeditor/update_dep.sh | 5 |
1 files changed, 5 insertions, 0 deletions
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 . |