diff options
author | Matt Wrock <matt@mattwrock.com> | 2016-05-25 17:59:43 -0700 |
---|---|---|
committer | Matt Wrock <matt@mattwrock.com> | 2016-05-25 17:59:43 -0700 |
commit | 68120b524128c539604604b0eea296fda4c35305 (patch) | |
tree | 025ef05099f4f458bc6ae53bd252f8ea07d00279 /tasks | |
parent | ec78008e53935e6d200279e7875c9979e38b30c3 (diff) | |
download | chef-68120b524128c539604604b0eea296fda4c35305.tar.gz |
fix delete in bundle-platform
Diffstat (limited to 'tasks')
-rwxr-xr-x | tasks/bin/bundle-platform | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/bin/bundle-platform b/tasks/bin/bundle-platform index 10d9bb2b3d..4bd659d307 100755 --- a/tasks/bin/bundle-platform +++ b/tasks/bin/bundle-platform @@ -7,7 +7,7 @@ old_platforms = Gem.platforms Gem.platforms = platforms puts "bundle-platform set Gem.platforms to #{Gem.platforms.map { |p| p.to_s }} (was #{old_platforms.map { |p| p.to_s } })" -desired_version = ARGV.shift.delete("_", "") +desired_version = ARGV.shift.delete("_") # The rest of this is a normal bundler binstub require "pathname" |