diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-11-15 15:08:04 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-12-06 13:08:26 -0800 |
commit | d874a5a2731e5d7c21111cef7567473f2ed1c47c (patch) | |
tree | 14886f2dde6c31da544833124212bc42e17be394 /tasks | |
parent | 2e92c709459dffef54f9d671e10ec9a949a94962 (diff) | |
download | chef-d874a5a2731e5d7c21111cef7567473f2ed1c47c.tar.gz |
fix Style/SpaceInsideStringInterpolation
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
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 aa8443e74c..aaf433c98d 100755 --- a/tasks/bin/bundle-platform +++ b/tasks/bin/bundle-platform @@ -6,7 +6,7 @@ platforms = platforms.split(" ").map { |p| Gem::Platform.new(p) } Gem::Platform.instance_eval { @local = platforms.last } 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 } })" +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("_") |