Described some automation scripts [skip ci]

This commit is contained in:
XargonWan 2023-09-26 09:08:29 +02:00
parent 9376a9274e
commit 6b4b171219
3 changed files with 10 additions and 1 deletions

View file

@ -1,5 +1,8 @@
#!/bin/bash #!/bin/bash
# THIS SCRIPT IS BROKEN HENCE DISABLED FTM
# This script is getting the latest release notes from the wiki and add them to the appdata
source automation_tools/version_extractor.sh source automation_tools/version_extractor.sh
# Fetch appdata version # Fetch appdata version

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# Don't use this script lightly # WARNING: DANGEROUS! Don't use this script lightly
git submodule deinit --all git submodule deinit --all
rm rd-submodules/retroarch rm rd-submodules/retroarch

View file

@ -1,5 +1,11 @@
#!/bin/bash #!/bin/bash
# This script is intended to gather version information from various sources:
# RetroDECK repository
# Appdata.xml file
# Manifest YAML file
# It consists of three functions, each responsible for retrieving a specific version-related data.
appdata="net.retrodeck.retrodeck.appdata.xml" appdata="net.retrodeck.retrodeck.appdata.xml"
manifest="net.retrodeck.retrodeck.yml" manifest="net.retrodeck.retrodeck.yml"
manifest_content=$(cat "$manifest") manifest_content=$(cat "$manifest")