diff --git a/automation_tools/update_manifest.sh b/automation_tools/update_manifest.sh index 1d28c79..43a4ec3 100755 --- a/automation_tools/update_manifest.sh +++ b/automation_tools/update_manifest.sh @@ -4,11 +4,11 @@ git clone https://github.com/XargonWan/RetroDECK --depth=1 RetroDECK # Creating module manifest manifest_header="manifest-header.yml" -manifest_module="manifest_module.yml" -module_manifest="net.retrodeck.module.yml" -command="/app/bin/module" +manifest_modules="manifest_module.yml" +full_manifest="net.retrodeck.module.yml" +command="module" -# sed -n '/command/q;p' RetroDECK/net.retrodeck.retrodeck.yml > "$manifest_header" TEMPORARY DISABLED TO TRY A BUILD WITH ANOTHER RUNTIME +sed -n '/command/q;p' RetroDECK/net.retrodeck.retrodeck.yml > "$manifest_header" TEMPORARY DISABLED TO TRY A BUILD WITH ANOTHER RUNTIME echo -e "command: $command\n" >> "$manifest_header" sed -i '/^[[:space:]]*#/d' "$manifest_header" sed -i 's/[[:space:]]*#.*$//' "$manifest_header" @@ -16,7 +16,7 @@ sed -n '/finish-args:/,${/cleanup:/q;p;}' RetroDECK/net.retrodeck.retrodeck.yml sed -i 's/net.retrodeck.retrodeck/net.retrodeck.module/' "$manifest_header" -cat "$manifest_header" > "$module_manifest" -cat "$manifest_module" >> "$module_manifest" +cat "$manifest_header" > "$full_manifest" +cat "$manifest_modules" >> "$full_manifest" rm -rf RetroDECK \ No newline at end of file diff --git a/manifest-module.yml b/manifest-modules.yml similarity index 100% rename from manifest-module.yml rename to manifest-modules.yml