aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d>2012-12-03 11:10:27 -0500
committercslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d>2012-12-03 11:10:27 -0500
commit6da9da41f9d974fd6389eeca9aa3eb864e0540f3 (patch)
treedea6ea74e2d8aa2f4e052098bb23f115d641a2bb
parentaf82a2c90cfebbb77bd0acfb4057c0367875c5bc (diff)
downloadsteuermann-6da9da41f9d974fd6389eeca9aa3eb864e0540f3.tar.gz
make scp errors go to /dev/null
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@878 d34015c8-bcbb-4646-8ac8-8ba5febf221d
-rw-r--r--steuermann/run_all.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/steuermann/run_all.py b/steuermann/run_all.py
index fa3e647..6bdf5d6 100644
--- a/steuermann/run_all.py
+++ b/steuermann/run_all.py
@@ -524,7 +524,7 @@ def run_step( runner, xnodes, run_name, db ) :
except:
print 'mkdir -p %s failed' %os.path.dirname(dst)
try:
- os.system('scp -r %s:%s %s' %(hostname, src, dst))
+ os.system('scp -r %s:%s %s 2> /dev/null' %(hostname, src, dst))
except:
print 'scp failed'