mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 05:55:38 +00:00
17 lines
526 B
Bash
17 lines
526 B
Bash
#!/bin/bash
|
|
|
|
# WARNING: DANGEROUS! Don't use this script lightly
|
|
|
|
git submodule deinit --all
|
|
rm rd-submodules/retroarch
|
|
git rm -rf --cached rd-submodules/retroarch
|
|
rm -rf .git/modules/rd-submodules/retroarch
|
|
rm -rf shared-modules
|
|
git rm -rf --cached shared-modules
|
|
rm -rf .git/modules/shared-modules
|
|
|
|
git submodule init
|
|
git submodule add https://github.com/flathub/shared-modules.git
|
|
git submodule add https://github.com/flathub/org.libretro.RetroArch rd-submodules/retroarch
|
|
|
|
git submodule update --remote --merge --recursive |