Commit 690ecaca authored by Samuel E. Giddins's avatar Samuel E. Giddins

[Executable] Dont shell escape in the verbose message

parent f71d6ee3
...@@ -54,7 +54,7 @@ module Pod ...@@ -54,7 +54,7 @@ module Pod
require 'shellwords' require 'shellwords'
command = command.map(&:to_s) command = command.map(&:to_s)
full_command = "#{bin.shellescape} #{command.map(&:shellescape).join(' ')}" full_command = "#{bin} #{command.join(' ')}"
if Config.instance.verbose? if Config.instance.verbose?
UI.message("$ #{full_command}") UI.message("$ #{full_command}")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment