From aa816177d0daaaf86a91a62763105510b93459f5 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 28 Dec 2020 17:16:29 +1000 Subject: [PATCH] add --force-delete to ./run Excluded files in folders were preventing stale folders from being removed when deps were updated, leading to warnings on run. --- run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run b/run index 943c20784..40888f981 100755 --- a/run +++ b/run @@ -11,7 +11,7 @@ run_mac() { # so we need to copy the files into a working folder before running on a Mac. workspace=$(dirname $0) bazel build $BUILDARGS //qt:runanki && \ - rsync -aiL --exclude=anki/external --exclude=__pycache__ --delete \ + rsync -aiL --exclude=anki/external --exclude=__pycache__ --delete --force-delete \ $workspace/bazel-bin/qt/runanki* $workspace/bazel-copy/ && \ $workspace/bazel-copy/runanki $* }