diff options
| -rwxr-xr-x | tools/reset-submodules.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/reset-submodules.sh b/tools/reset-submodules.sh new file mode 100755 index 000000000..6fdfe0bcd --- /dev/null +++ b/tools/reset-submodules.sh | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | #!/bin/bash -ex | ||
| 2 | |||
| 3 | # SPDX-FileCopyrightText: 2024 yuzu Emulator Project | ||
| 4 | # SPDX-License-Identifier: MIT | ||
| 5 | |||
| 6 | git submodule sync | ||
| 7 | git submodule foreach --recursive git reset --hard | ||
| 8 | git submodule update --init --recursive | ||