mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 05:55:38 +00:00
Described some automation scripts [skip ci]
This commit is contained in:
parent
9376a9274e
commit
6b4b171219
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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")
|
||||||
|
|
Loading…
Reference in a new issue