summaryrefslogtreecommitdiff
path: root/tool/vcs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/vcs.rb')
-rw-r--r--tool/vcs.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/vcs.rb b/tool/vcs.rb
index 9df3b38302..5697a1b1e4 100644
--- a/tool/vcs.rb
+++ b/tool/vcs.rb
@@ -91,10 +91,10 @@ else
end
using DebugPOpen
module DebugSystem
- def system(*args, exception: true, **opts)
+ def system(*args, **opts)
STDERR.puts [*args, **opts].inspect if $DEBUG
if RUBY_VERSION >= "2.6"
- opts[:exception] = exception
+ opts[:exception] = true unless opts.key?(:exception)
end
ret = super(*args, **opts)
raise "Command failed with status (#$?): #{args[0]}" if exception and !ret