diff options
author | Tim Smith <tsmith@chef.io> | 2019-03-19 09:35:50 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2019-03-19 09:35:50 -0700 |
commit | d5b23ad29829c0a822189c418dba1dec274b4c18 (patch) | |
tree | d2524bdc52a302aeecb4a6658ccd5c280400dfe7 /.expeditor/update_dep.sh | |
parent | 757a018ef5bc20efd73fed677889dd462dacbde8 (diff) | |
download | chef-d5b23ad29829c0a822189c418dba1dec274b4c18.tar.gz |
Pin expeditor to ruby 2.5.3 and bump train to 1.7.6
Expeditor keeps incorrectly bumping addressable to 2.5.2, which seems like some sort of ruby/bundler bug, which is breaking builds. We're attempting to switch back to ruby 2.5.3. in expeditor to see if that resolves the bumping issues.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.expeditor/update_dep.sh')
-rw-r--r-- | .expeditor/update_dep.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.expeditor/update_dep.sh b/.expeditor/update_dep.sh index 1041f7504a..e71c91276b 100644 --- a/.expeditor/update_dep.sh +++ b/.expeditor/update_dep.sh @@ -11,6 +11,9 @@ set -evx +# this attempts to work around the bundle update making unsolvable dep tree +asdf local ruby 2.5.3 + function new_gem_included() { git diff | grep -E '^\+' | grep "${EXPEDITOR_GEM_NAME} (${EXPEDITOR_VERSION})" } |