From 5f1d2c4a3e3a34b92a3ac1a92bc3235be3f82e67 Mon Sep 17 00:00:00 2001 From: Jeff Lindsay Date: Sun, 23 Jun 2013 17:50:24 -0700 Subject: [PATCH] remove debug output --- tests/run_ec2 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/run_ec2 b/tests/run_ec2 index 034383bb0..dd302817d 100755 --- a/tests/run_ec2 +++ b/tests/run_ec2 @@ -35,9 +35,8 @@ set -e echo "-----> Connecting and running boostrap script..." cat ../bootstrap.sh | ssh -o "StrictHostKeyChecking=no" ubuntu@$PUBLIC_IP "HOSTNAME=$PUBLIC_IP sudo bash" 2>&1 | indent echo "-----> Installing SSH public keys..." -cat ~/.ssh/id_rsa.pub -cat ~/.ssh/id_rsa.pub | ssh -o "StrictHostKeyChecking=no" ubuntu@$PUBLIC_IP "sudo gitreceive upload-key test" -cat ~/.ssh/id_rsa.pub | ssh -o "StrictHostKeyChecking=no" ubuntu@$PUBLIC_IP "sudo sshcommand acl-add dokku test" +cat ~/.ssh/id_rsa.pub | ssh -o "StrictHostKeyChecking=no" ubuntu@$PUBLIC_IP "sudo gitreceive upload-key test" > /dev/null +cat ~/.ssh/id_rsa.pub | ssh -o "StrictHostKeyChecking=no" ubuntu@$PUBLIC_IP "sudo sshcommand acl-add dokku test" > /dev/null for app_path in apps/*; do app=$(basename $app_path) echo "-----> Running test deploy of $app..."