From 442fa35c1986fecff221609949b54fa4eecd22c0 Mon Sep 17 00:00:00 2001 From: Christoph Borchert Date: Wed, 17 Jun 2015 14:02:28 +0200 Subject: [PATCH] distribute-experiment.sh: exclude *.pb files from rsync Change-Id: I6997dcb767fa302745a3a1c35eae2d5ad5166372 --- scripts/distribute-experiment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/distribute-experiment.sh b/scripts/distribute-experiment.sh index 4c961bec..d2c80339 100755 --- a/scripts/distribute-experiment.sh +++ b/scripts/distribute-experiment.sh @@ -39,7 +39,7 @@ fi for h in $FAIL_DISTRIBUTE_HOSTS do echo Distributing to $h ... - rsync -az --partial --delete-before --delete-excluded --exclude=core --exclude=*.tc . $h:"$FAIL_EXPERIMENT_TARGETDIR" & + rsync -az --partial --delete-before --delete-excluded --exclude=core --exclude=*.tc --exclude=*.pb . $h:"$FAIL_EXPERIMENT_TARGETDIR" & done wait