MuseScore/hooks/uninstall.sh
Peter Jonas 0400985dae Uncrustify: Faster pre-commit hook to fix code style
Run multiple instances of Uncrustify in parallel to speed up fixing the
code style for many files at once.
2023-04-10 12:52:37 +01:00

32 lines
942 B
Bash
Executable file

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-3.0-only
# MuseScore-CLA-applies
#
# MuseScore
# Music Composition & Notation
#
# Copyright (C) 2023 MuseScore BVBA and others
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
cd "${BASH_SOURCE%/*}/.." # make paths relative to repository root
hooks=(
# Alphabetical order please!
pre-commit
)
for file in "${hooks[@]}"; do
rm ".git/hooks/${file}"
done