We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2abd4b commit 8b0681fCopy full SHA for 8b0681f
features/support/env.rb
@@ -2,13 +2,14 @@
2
require 'fileutils'
3
4
module ArubaExt
5
- def run_command(cmd, timeout = nil)
+ def run_command_and_stop(cmd, opts = {})
6
exec_cmd = cmd =~ /^rspec/ ? "bin/#{cmd}" : cmd
7
+
8
unset_bundler_env_vars
9
# Ensure the correct Gemfile and binstubs are found
10
in_current_directory do
11
with_unbundled_env do
- super(exec_cmd, timeout)
12
+ super(exec_cmd, opts)
13
end
14
15
0 commit comments