mirror of
https://github.com/ong19th/Citron.git
synced 2025-12-12 04:36:57 +00:00
10 lines
407 B
Bash
Executable file
10 lines
407 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
# SPDX-FileCopyrightText: 2019 citron Emulator Project
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
chmod a+x ./.ci/scripts/format/docker.sh
|
|
# the UID for the container citron user is 1027
|
|
sudo chown -R 1027 ./
|
|
docker run -v "$(pwd):/citron" -w /citron yuzu-emu-mirror/build-environments:linux-clang-format /bin/bash -ex /citron/.ci/scripts/format/docker.sh
|
|
sudo chown -R $UID ./
|