From a1c9917c4ca620e5edc091fd62bc94785533e688 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Mon, 11 Jan 2021 18:37:46 +0000 Subject: [PATCH] hack/deploy: fix typo - store/dh, not store/da --- hack/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/deploy.sh b/hack/deploy.sh index be8efa73d8..f7a91bd5cb 100755 --- a/hack/deploy.sh +++ b/hack/deploy.sh @@ -13,7 +13,7 @@ ssh_cmd="ssh -o StrictHostKeyChecking=accept-new" if [ ! -z ${2+x} ]; then ssh_cmd="$ssh_cmd $2"; fi echo Syncing repo content to machine "$1" -rsync -e "$ssh_cmd" -avz --exclude='.hg/store/data/' --exclude='.hg/store/da/' --exclude='.hg/cache/' --exclude='.hg/wcache/' ./ "deployer@$1:depot/" +rsync -e "$ssh_cmd" -avz --exclude='.hg/store/data/' --exclude='.hg/store/dh/' --exclude='.hg/cache/' --exclude='.hg/wcache/' ./ "deployer@$1:depot/" echo Triggering rebuild $ssh_cmd -t "deployer@$1" rebuilder ./depot