summaryrefslogtreecommitdiff
path: root/spec/support/shell_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shell_helpers.rb')
-rw-r--r--spec/support/shell_helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/shell_helpers.rb b/spec/support/shell_helpers.rb
index 756b0e2..c22da0e 100644
--- a/spec/support/shell_helpers.rb
+++ b/spec/support/shell_helpers.rb
@@ -10,7 +10,7 @@ RSpec.shared_context 'when executing the cli' do
let(:env) {}
def execute(command, mute: false, env: self.env)
- full_command = "#{env} bundle exec ruby ./exe/saml-kit #{command} 2>&1"
+ full_command = "#{env} ./exe/saml-kit #{command} 2>&1"
puts full_command unless mute
output = `#{full_command}`
[$CHILD_STATUS, output]