aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/hbc/system_command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/compat/hbc/system_command.rb')
-rw-r--r--Library/Homebrew/compat/hbc/system_command.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/Library/Homebrew/compat/hbc/system_command.rb b/Library/Homebrew/compat/hbc/system_command.rb
deleted file mode 100644
index bb9187db3..000000000
--- a/Library/Homebrew/compat/hbc/system_command.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require "shellwords"
-
-module SystemCommandCompatibilityLayer
- def initialize(executable, args: [], **options)
- if args.empty? && !File.exist?(executable)
- odeprecated "`system_command` with a shell string", "`system_command` with the `args` parameter"
- executable, *args = Shellwords.shellsplit(executable)
- end
-
- super(executable, args: args, **options)
- end
-end
-
-module Hbc
- class SystemCommand
- prepend SystemCommandCompatibilityLayer
- end
-end