Fix broken Configurator location

This commit is contained in:
icenine451 2023-03-21 15:08:08 -04:00
parent 872d2e65b7
commit 5f6339e4e5
3 changed files with 8 additions and 7 deletions

View file

@ -1613,7 +1613,7 @@
<system> <system>
<name>tools</name> <name>tools</name>
<fullname>RetroDECK Tools</fullname> <fullname>RetroDECK Tools</fullname>
<path>/var/config/retrodeck/tools</path> <path>/app/bin/tools</path>
<extension>.sh .SH</extension> <extension>.sh .SH</extension>
<command>bash %ROM%</command> <command>bash %ROM%</command>
<platform>tools</platform> <platform>tools</platform>

View file

@ -1,7 +1,7 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<gameList> <gameList>
<game> <game>
<path>/app/bin/configurator.sh</path> <path>./configurator.sh</path>
<name>RetroDECK Configurator</name> <name>RetroDECK Configurator</name>
<desc>Change settings, move folders and more!</desc> <desc>Change settings, move folders and more!</desc>
<nogamecount>true</nogamecount> <nogamecount>true</nogamecount>

View file

@ -1061,14 +1061,15 @@ modules:
- cp -f res/splash.svg ${FLATPAK_DEST}/emulationstation/graphics/splash-orig.svg - cp -f res/splash.svg ${FLATPAK_DEST}/emulationstation/graphics/splash-orig.svg
- cp -f res/icon.svg /app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg - cp -f res/icon.svg /app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg
# Tools # RetroDECK core script
- mv -f es-configs/tools-gamelist.xml ${FLATPAK_DEST}/retrodeck/
# Launchable scripts
- cp retrodeck.sh /app/bin/retrodeck.sh - cp retrodeck.sh /app/bin/retrodeck.sh
- chmod +x /app/bin/retrodeck.sh - chmod +x /app/bin/retrodeck.sh
- cp tools/configurator.sh /app/bin/configurator.sh
# Tools
- mkdir -p /app/bin/tools
- cp tools/configurator.sh /app/bin/tools/configurator.sh
- chmod +x /app/bin/configurator.sh - chmod +x /app/bin/configurator.sh
- cp es-configs/tools-gamelist.xml /app/bin/tools/tools-gamelist.xml
# Function libraries # Function libraries
- mkdir -p /app/libexec - mkdir -p /app/libexec