mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-04 22:17:45 +08:00
Task-number: QTQAINFRA-5996
Change-Id: I6c85816f7b490fbb2423cbf7d0efe862056bc001
Reviewed-by: Toni Saario <toni.saario@qt.io>
(cherry picked from commit f9bb6b202a)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
31 lines
706 B
Bash
Executable File
31 lines
706 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2017 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
disableSpotlight() {
|
|
# Disable spotlight and and stop indexing
|
|
sudo mdutil -a -i off
|
|
sudo mdutil -a -i off /
|
|
# Disable spotlight indexing /Volumes
|
|
sudo mdutil -i off /Volumes
|
|
# Erase spotlight index
|
|
sudo mdutil -E /
|
|
}
|
|
|
|
# Disabling spotlight tends to be flaky, add some retry
|
|
for i in $(seq 1 5)
|
|
do
|
|
disableSpotlight
|
|
res=$?
|
|
if [[ $res -eq 0 ]]
|
|
then
|
|
echo "Spotlight disabled"
|
|
break
|
|
else
|
|
echo "Failed to disable spotlight, $i retry..."
|
|
sleep 2
|
|
fi
|
|
done
|
|
|
|
exit $res
|