summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wrock <matt@mattwrock.com>2016-05-25 17:59:43 -0700
committerMatt Wrock <matt@mattwrock.com>2016-05-25 17:59:43 -0700
commit68120b524128c539604604b0eea296fda4c35305 (patch)
tree025ef05099f4f458bc6ae53bd252f8ea07d00279
parentec78008e53935e6d200279e7875c9979e38b30c3 (diff)
downloadchef-68120b524128c539604604b0eea296fda4c35305.tar.gz
fix delete in bundle-platform
-rwxr-xr-xtasks/bin/bundle-platform2
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"