From 951522cb7d451943d548fad7b262cd1235e7bf09 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 10 Aug 2024 07:34:30 +0200 Subject: [PATCH 1/2] Document --appimage-extract-and-run Closes #64 --- src/runtime/runtime.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index f6a7055..a4160b4 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -663,6 +663,9 @@ void print_help(const char* appimage_path) { "AppImage options:\n\n" " --appimage-extract [] Extract content from embedded filesystem image\n" " If pattern is passed, only extract matching files\n" + " --appimage-extract-and-run Temporarily extract content from embedded\n" + " filesystem image, run contained application,\n" + " then delete temporarily extracted content\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" From 0d74e0c26c3f1b96507be922b0b536258b397b46 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 10 Aug 2024 07:52:40 +0200 Subject: [PATCH 2/2] Fix #66 --- src/runtime/runtime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index a4160b4..065107c 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -662,7 +662,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-extract-and-run Temporarily extract content from embedded\n" " filesystem image, run contained application,\n" " then delete temporarily extracted content\n"