| Index: runtime/bin/vmservice/observatory/deploy.sh
|
| diff --git a/runtime/bin/vmservice/observatory/deploy.sh b/runtime/bin/vmservice/observatory/deploy.sh
|
| index 7cf4caf3044b2b966a799d404700b142ee13bf55..4cc93f0d53b07f7472b01086338b56a26aefb696 100755
|
| --- a/runtime/bin/vmservice/observatory/deploy.sh
|
| +++ b/runtime/bin/vmservice/observatory/deploy.sh
|
| @@ -22,4 +22,13 @@ EXCLUDE="$EXCLUDE --exclude main.*"
|
| EXCLUDE="$EXCLUDE --exclude unittest"
|
| EXCLUDE="$EXCLUDE --exclude *_buildLogs*"
|
|
|
| +# For some reason...
|
| +#
|
| +# EXCLUDE="$EXCLUDE --exclude *~"
|
| +#
|
| +# ..doesn't work to exclude emacs auto-save files. I'm sure it is
|
| +# something silly, but, in the meantime, solve the problem with a
|
| +# hammer.
|
| +find build -type f | grep ~$ | xargs rm
|
| +
|
| rsync -av --progress build/web/ deployed/web/ $EXCLUDE
|
|
|