From b13b44161d655d09c054a6857d57293be583392b Mon Sep 17 00:00:00 2001 From: XargonWan Date: Thu, 25 Jul 2024 23:01:37 +0900 Subject: [PATCH] Manifest fixes --- manifest-modules.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest-modules.yml b/manifest-modules.yml index 201ed9a..b27ebfb 100644 --- a/manifest-modules.yml +++ b/manifest-modules.yml @@ -3,9 +3,9 @@ modules: - name: module buildsystem: simple build-commands: - - touch "${FLATPAK_DEST}/bin/module" + - mkdir -p "${FLATPAK_DEST}/bin" - echo 'echo hello_world' > "${FLATPAK_DEST}/bin/module" - - ls -lah /app/bin + - ls -lah "${FLATPAK_DEST}/bin" - chmod +x "${FLATPAK_DEST}/bin/module"