From 83bd6ee3843252628b5b4516977fc7be01981379 Mon Sep 17 00:00:00 2001 From: icenine451 Date: Fri, 28 Mar 2025 17:10:46 -0400 Subject: [PATCH] Exclude .png and .po from the exported RetroDECK MIME types --- developer_toolbox/mime-populator.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer_toolbox/mime-populator.sh b/developer_toolbox/mime-populator.sh index 04a14ed8..ac6b5ec9 100755 --- a/developer_toolbox/mime-populator.sh +++ b/developer_toolbox/mime-populator.sh @@ -4,7 +4,7 @@ ES_SYSTEMS_FILE="../ES-DE/resources/systems/linux/es_systems.xml" MIME_FILE="config/retrodeck/net.retrodeck.retrodeck.mime.xml" # List of extensions to ignore -IGNORED_EXTENSIONS=". .appimage cue" +IGNORED_EXTENSIONS=". .appimage cue png po" # Check if xmlstarlet is installed if ! command -v xmlstarlet &> /dev/null; then @@ -53,4 +53,4 @@ xmlstarlet fo --indent-tab "$MIME_FILE" > "$MIME_FILE.tmp" && mv "$MIME_FILE.tmp # Clean up temporary files rm -f "$EXTENSIONS_FILE" -echo "MIME file updated successfully at $MIME_FILE" \ No newline at end of file +echo "MIME file updated successfully at $MIME_FILE"