You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by wf...@apache.org on 2014/05/29 23:08:20 UTC

git commit: Change excludes in rsync commands to avoid unintentionally suppressing non-top-level directories.

Repository: incubator-aurora
Updated Branches:
  refs/heads/master ec563150e -> dd97b51fb


Change excludes in rsync commands to avoid unintentionally suppressing non-top-level directories.

Bugs closed: AURORA-491

Reviewed at https://reviews.apache.org/r/22050/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/dd97b51f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/dd97b51f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/dd97b51f

Branch: refs/heads/master
Commit: dd97b51fb7db74458770951f6b8490d5e3b80bac
Parents: ec56315
Author: Bill Farner <wf...@apache.org>
Authored: Thu May 29 14:07:44 2014 -0700
Committer: Bill Farner <wf...@apache.org>
Committed: Thu May 29 14:07:44 2014 -0700

----------------------------------------------------------------------
 examples/vagrant/provision-dev-cluster.sh | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/dd97b51f/examples/vagrant/provision-dev-cluster.sh
----------------------------------------------------------------------
diff --git a/examples/vagrant/provision-dev-cluster.sh b/examples/vagrant/provision-dev-cluster.sh
index ce936c1..e08c0de 100755
--- a/examples/vagrant/provision-dev-cluster.sh
+++ b/examples/vagrant/provision-dev-cluster.sh
@@ -33,11 +33,11 @@ hostname 192.168.33.7
 function build_all() {
   echo Copying aurora source code
   rsync -urzvh /vagrant/ aurora \
-      --exclude '.gradle' \
-      --exclude '.pants.d' \
-      --exclude 'dist/*' \
-      --exclude 'build-support/*.venv' \
-      --exclude 'build-support/thrift/thrift-*' \
+      --exclude './.gradle' \
+      --exclude './.pants.d' \
+      --exclude './dist/*' \
+      --exclude './build-support/*.venv' \
+      --exclude './build-support/thrift/thrift-*' \
       --exclude '*.pyc'
 
   pushd aurora