diff options
author | Ralph Giles <ralph.giles@artifex.com> | 2007-08-17 17:48:43 +0000 |
---|---|---|
committer | Ralph Giles <ralph.giles@artifex.com> | 2007-08-17 17:48:43 +0000 |
commit | 3fdeaa3602af3495e5db5dfc4b042fa9ee5bf38e (patch) | |
tree | 640a3463c010db13e1b02a5cbfd57f02bc300dd8 /tools | |
parent | 63ea9c71c4b07180a56ae8493706c63bdb387fc2 (diff) |
Make clusterpush slightly more verbose.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@2894 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/clusterpush.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/clusterpush.sh b/tools/clusterpush.sh index bdf631ae9..ae25a2216 100755 --- a/tools/clusterpush.sh +++ b/tools/clusterpush.sh @@ -2,4 +2,10 @@ # helper script to syncronize a working tree with the regression cluster -rsync -avz --exclude .svn --exclude obj --exclude ufst --exclude ufst-obj ./* atfxsw01@tticluster.com:$USER/ghostpcl/ +HOST=atfxsw01@tticluster.com +DEST=$USER/ghostpcl + +echo "Pushing to $DEST on the cluster..." +rsync -avz \ + --exclude .svn --exclude obj --exclude ufst --exclude ufst-obj \ + ./* $HOST:$DEST/ |