From 838e2292f221ee99ea17536117619c15c38e71e8 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 24 Nov 2020 21:41:09 +1000 Subject: [PATCH] --no-times made running on macOS slower --- run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run b/run index c5cdaa5be..8d06b353a 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 //qt:runanki && \ - rsync -aiL --no-times --exclude=anki/external --exclude=__pycache__ --delete \ + rsync -aiL --exclude=anki/external --exclude=__pycache__ --delete \ $workspace/bazel-bin/qt/runanki* $workspace/bazel-copy/ && \ $workspace/bazel-copy/runanki $* }