mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2025-12-16 12:08:49 +00:00
11 lines
257 B
Bash
Executable File
11 lines
257 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
# SPDX-FileCopyrightText: 2024 yuzu Emulator Project
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# This script assumes that Git is installed
|
|
|
|
git submodule sync
|
|
git submodule foreach --recursive git reset --hard
|
|
git submodule update --init --recursive
|