diff options
| author | Markus Reiter | 2017-10-24 18:28:21 +0200 |
|---|---|---|
| committer | Markus Reiter | 2017-10-30 22:04:54 +0100 |
| commit | 2eb366ff386674bcd2eec760fdaef25dff665063 (patch) | |
| tree | 856de5e7819f69bcf0adde4761729c59a85c232d /Library/Homebrew/cask/lib/hbc/system_command.rb | |
| parent | 2d5bb029a51f17d15ee6a61160297a748c28f6be (diff) | |
| download | brew-2eb366ff386674bcd2eec760fdaef25dff665063.tar.bz2 | |
Fix `SystemCommand` without arguments.
Diffstat (limited to 'Library/Homebrew/cask/lib/hbc/system_command.rb')
| -rw-r--r-- | Library/Homebrew/cask/lib/hbc/system_command.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/system_command.rb b/Library/Homebrew/cask/lib/hbc/system_command.rb index 3c8311a3b..ea440991f 100644 --- a/Library/Homebrew/cask/lib/hbc/system_command.rb +++ b/Library/Homebrew/cask/lib/hbc/system_command.rb @@ -1,5 +1,4 @@ require "open3" -require "shellwords" require "vendor/plist/plist" require "extend/io" @@ -38,8 +37,6 @@ module Hbc end def initialize(executable, args: [], sudo: false, input: [], print_stdout: false, print_stderr: true, must_succeed: false, **options) - executable, *args = Shellwords.shellescape(executable) if args.empty? - @executable = executable @args = args @sudo = sudo |
