From 2639f9aecebcf21c00184ba725b57b515c8fac15 Mon Sep 17 00:00:00 2001 From: Matteo Cypriani Date: Thu, 2 May 2013 10:57:30 -0400 Subject: [PATCH] [cluster] deploy: send to user's home Set the destination directory to ~ instead of /root. --- cluster/cluster-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/cluster-deploy.sh b/cluster/cluster-deploy.sh index eeb73b9..8c89381 100755 --- a/cluster/cluster-deploy.sh +++ b/cluster/cluster-deploy.sh @@ -55,5 +55,5 @@ fi for FILE in "$@" ; do echo "Deploying '$FILE'..." - $PSCP -r $LOGIN -h "$HOSTS" -- "$FILE" /root + $PSCP -r $LOGIN -h "$HOSTS" -- "$FILE" ~ done