From 67117be57b45467f7ab3d6437b85c40f432bee58 Mon Sep 17 00:00:00 2001 From: andy5995 Date: Sun, 29 Sep 2024 05:39:05 -0500 Subject: [PATCH 1/2] Reduce width of 'appimage-extract' help output (fixes #66) --- src/runtime/runtime.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index 8917959..ff94839 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -558,7 +558,8 @@ void print_help(const char* appimage_path) { fprintf(stderr, "AppImage options:\n\n" " --appimage-extract [] Extract content from embedded filesystem image\n" - " If pattern is passed, only extract matching files\n" + " If pattern is passed, only extract matching\n" + " files\n" " --appimage-help Print this help\n" " --appimage-mount Mount embedded filesystem image and print\n" " mount point and wait for kill with Ctrl-C\n" @@ -1556,7 +1557,7 @@ int main(int argc, char* argv[]) { appimage_print_binary(appimage_path, offset, length); exit(0); } - + portable_option(arg, appimage_path, "home"); portable_option(arg, appimage_path, "config"); From 2d8c64eae83d528be93a746da1b879d3406af545 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 29 Sep 2024 15:28:03 +0200 Subject: [PATCH 2/2] actions/download-artifact@v4 --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e83747d..f912d21 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -107,7 +107,7 @@ jobs: - build steps: - name: Download artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 - name: Inspect directory after downloading artifacts run: ls -alFR - name: Create release and upload artifacts