diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-05-29 13:09:27 +0200 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-05-29 13:22:58 +0200 |
commit | 44b5dce958800424eddaaf59340b7213d1d6c2ba (patch) | |
tree | 092c23d48fc9e784ef8b8b6ab0eb33038d37bab6 | |
parent | 9a39d31a6bf3c3cbfda5a6617ab0f23e0ae689f9 (diff) | |
download | bundler-44b5dce958800424eddaaf59340b7213d1d6c2ba.tar.gz |
Fix no longer existent path in Azure environment
Ruby version seems to have been updated from 2.4.3 to 2.4.5, so the
hardcoded patch no longer exists.
-rw-r--r-- | .azure-pipelines/steps.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines/steps.yml b/.azure-pipelines/steps.yml index bb989ac70c..4755b218d3 100644 --- a/.azure-pipelines/steps.yml +++ b/.azure-pipelines/steps.yml @@ -16,7 +16,7 @@ steps: displayName: 'work around readline crash (for https://github.com/bundler/bundler/issues/6902)' - script: | - git apply --ignore-space-change --ignore-whitespace .azure-pipelines\rbreadline.diff --directory=C:/hostedtoolcache/windows/Ruby/2.4.3/x64/lib/ruby/site_ruby --unsafe-paths + git apply --ignore-space-change --ignore-whitespace .azure-pipelines\rbreadline.diff --directory=C:/hostedtoolcache/windows/Ruby/2.4.5/x64/lib/ruby/site_ruby --unsafe-paths displayName: 'patch local readline implementation (for https://github.com/bundler/bundler/issues/6907)' - script: | |