Skip to content

Commit 6f06ade

Browse files
committed
Merge pull request #971 from deis/integration-linux-fix
fix(test): remove `-K` ssh-add option that isn't available on Linux
2 parents 14076a5 + a056894 commit 6f06ade

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ EXAMPLE_APP = ENV['DEIS_TEST_APP'] || 'example-ruby-sinatra'
1212
namespace :setup do
1313
task :all => ['create_ssh_key','clone_example_app']
1414
task :create_ssh_key do
15-
run_command("if [ ! -f #{AUTH_KEY} ]; then ssh-keygen -q -t rsa -f #{AUTH_KEY} -N '' -C deis && ssh-add -K #{AUTH_KEY} ; fi")
15+
run_command("if [ ! -f #{AUTH_KEY} ]; then ssh-keygen -q -t rsa -f #{AUTH_KEY} -N '' -C deis && ssh-add #{AUTH_KEY} ; fi")
1616
end
1717
task :clone_example_app do
1818
run_command("if [ ! -d ./#{EXAMPLE_APP} ]; then git clone https://github.com/opdemand/#{EXAMPLE_APP}.git ; fi")

0 commit comments

Comments
 (0)