mirror of
https://github.com/azahar-emu/azahar.git
synced 2025-06-25 13:58:35 -04:00
10 lines
257 B
Bash
Executable file
10 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
|