Commit 138769dfeea6fc849836fbeda4257fc425a07389
1 parent
4b4f4720
Bugfix: fixed scp target filename in host_send_file
Showing
1 changed file
with
1 additions
and
1 deletions
cluster-manager.sh
@@ -56,7 +56,7 @@ function host_send_file { | @@ -56,7 +56,7 @@ function host_send_file { | ||
56 | if [ "$MYHOST" == "$1" ]; then | 56 | if [ "$MYHOST" == "$1" ]; then |
57 | cp ${2} ${3} | 57 | cp ${2} ${3} |
58 | else | 58 | else |
59 | - scp ${2} ${SSH_USER}${1}.routetopa.eu:${2} | 59 | + scp ${2} ${SSH_USER}${1}.routetopa.eu:${3} |
60 | fi | 60 | fi |
61 | } | 61 | } |
62 | 62 |