diff options
author | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2012-12-03 11:10:27 -0500 |
---|---|---|
committer | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2012-12-03 11:10:27 -0500 |
commit | 6da9da41f9d974fd6389eeca9aa3eb864e0540f3 (patch) | |
tree | dea6ea74e2d8aa2f4e052098bb23f115d641a2bb | |
parent | af82a2c90cfebbb77bd0acfb4057c0367875c5bc (diff) | |
download | steuermann-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.py | 2 |
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' |