--no-times made running on macOS slower

This commit is contained in:
Damien Elmes 2020-11-24 21:41:09 +10:00
parent 07e814ded5
commit 838e2292f2

2
run
View file

@ -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 $*
}