DEVELOPER_TOOLBOX: disabled appdata management in local build

This commit is contained in:
XargonWan 2024-07-12 17:26:45 +09:00
parent 21834feead
commit e47c9503fe
2 changed files with 14 additions and 13 deletions

View file

@ -40,19 +40,19 @@ release_snippet="\
xml_content=$(cat "$appdata_file") xml_content=$(cat "$appdata_file")
# Replace RELEASE_NOTES_PLACEHOLDER with the actual release notes # Replace RELEASE_NOTES_PLACEHOLDER with the actual release notes
# # TODO # TODO
# git clone https://github.com/XargonWan/RetroDECK.wiki.git /tmp/wiki git clone https://github.com/XargonWan/RetroDECK.wiki.git /tmp/wiki
# # Path to the markdown file # Path to the markdown file
# wiki="/tmp/wiki/Version-history:-Patch-Notes.md" wiki="/tmp/wiki/Version-history:-Patch-Notes.md"
# # Read the markdown file until the first occurrence of "---" # Read the markdown file until the first occurrence of "---"
# latest_version_notes="" latest_version_notes=""
# while IFS= read -r line; do while IFS= read -r line; do
# if [ "$line" = "---" ]; then if [ "$line" = "---" ]; then
# break break
# fi fi
# latest_version_notes+="$line\n" latest_version_notes+="$line\n"
# done < "$wiki" done < "$wiki"
# Extract the version number # Extract the version number
version_number="${latest_version_notes#*# RetroDECK }" # Remove text before "# RetroDECK " version_number="${latest_version_notes#*# RetroDECK }" # Remove text before "# RetroDECK "

View file

@ -17,7 +17,8 @@ automation_tools/install_dependencies.sh
automation_tools/cooker_build_id.sh automation_tools/cooker_build_id.sh
automation_tools/pre_build_automation.sh automation_tools/pre_build_automation.sh
automation_tools/cooker_flatpak_portal_add.sh automation_tools/cooker_flatpak_portal_add.sh
automation_tools/appdata_management.sh # THIS SCRIPT IS BROKEN HENCE DISABLED FTM
# automation_tools/appdata_management.sh
automation_tools/flatpak_build_download_only.sh automation_tools/flatpak_build_download_only.sh
automation_tools/flatpak_build_only.sh automation_tools/flatpak_build_only.sh
automation_tools/flatpak_build_bundle.sh automation_tools/flatpak_build_bundle.sh