mirror of
https://github.com/azahar-emu/azahar
synced 2025-11-06 15:09:58 +01: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
|