mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-01-31 04:25:39 +00:00
Added a script to commit to flathub
This commit is contained in:
parent
696436d773
commit
1506397147
71
flathub-push.sh
Normal file
71
flathub-push.sh
Normal file
|
@ -0,0 +1,71 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd ~/gits
|
||||
rm -rf flathub
|
||||
git clone --recursive https://github.com/flathub/net.retrodeck.retrodeck.git flathub
|
||||
cd ~/gits/RetroDECK
|
||||
git checkout main
|
||||
git submodule init
|
||||
git submodule update
|
||||
# NOTE: the only linked submodules are: rd-submodules/retroarch
|
||||
# these must be included in the exclusion list as they must be redownloaded
|
||||
#sync -rav --progress --exclude={'res/screenshots/','shared-modules/','rd-submodules/retroarch','.git/','docs','retrodeck-flatpak/','retrodeck-flatpak-cooker/','.flatpak-builder/'} ~/RetroDECK/ ~/flathub/
|
||||
|
||||
cd ~/gits/flathub
|
||||
git rm -rf *
|
||||
git clean -fxd # restroing git index
|
||||
|
||||
cd ~/gits/RetroDECK
|
||||
cp -rf \
|
||||
'rd-submodules' \
|
||||
'flathub.json' \
|
||||
'LICENSE' \
|
||||
'net.retrodeck.retrodeck.appdata.xml' \
|
||||
'net.retrodeck.retrodeck.desktop' \
|
||||
'net.retrodeck.retrodeck.yml' \
|
||||
'README.md' \
|
||||
~/gits/flathub/
|
||||
cd ~/gits/flathub
|
||||
|
||||
# #rebuilding submodules
|
||||
# git config -f .gitmodules --get-regexp '^submodule\..*\.path$' |
|
||||
# while read path_key path
|
||||
# do
|
||||
# url_key=$(echo $path_key | sed 's/\.path/.url/');
|
||||
# branch_key=$(echo $path_key | sed 's/\.path/.branch/');
|
||||
# # If the url_key doesn't yet exist then backup up the existing
|
||||
# # directory if necessary and add the submodule
|
||||
# if [ ! $(git config --get "$url_key") ]; then
|
||||
# if [ -d "$path" ] && [ ! $(git config --get "$url_key") ]; then
|
||||
# mv "$path" "$path""_backup_""$(date +'%Y%m%d%H%M%S')";
|
||||
# fi;
|
||||
# url=$(git config -f .gitmodules --get "$url_key");
|
||||
# # If a branch is specified then use that one, otherwise
|
||||
# # default to master
|
||||
# branch=$(git config -f .gitmodules --get "$branch_key");
|
||||
# if [ ! "$branch" ]; then branch="master"; fi;
|
||||
# git submodule add -f -b "$branch" "$url" "$path";
|
||||
# fi;
|
||||
# done;
|
||||
|
||||
# # In case the submodule exists in .git/config but the url is out of date
|
||||
# git submodule sync
|
||||
|
||||
# # Now actually pull all the modules. I used to use this...
|
||||
# git submodule foreach --recursive 'git checkout $(git config -f $toplevel/.gitmodules submodule.$name.branch || echo master)';
|
||||
|
||||
rm -rf .git/modules/*
|
||||
# Adding the real submodules, please update this every time a submodule is added
|
||||
git rm -rf shared-modules
|
||||
git submodule add https://github.com/flathub/shared-modules.git shared-modules
|
||||
|
||||
git rm -rf rd-submodules/retroarch
|
||||
git submodule add https://github.com/flathub/org.libretro.RetroArch.git rd-submodules/retroarch
|
||||
|
||||
# unbinds all submodules
|
||||
git submodule deinit -f .
|
||||
# checkout again
|
||||
git submodule update --init --recursive
|
||||
git add *
|
||||
git commit -m "Updated flathub/net.retrodeck.retrodeck from RetroDECK/main"
|
||||
git push origin master
|
Loading…
Reference in a new issue