From 33dea5bcab05d2493d05408f72c88c3304e5a18c Mon Sep 17 00:00:00 2001 From: Tres Finocchiaro Date: Fri, 22 Aug 2025 12:08:15 -0400 Subject: [PATCH] --deploy-deps-only: Improve wording Improve clarity, remove ambiguity about flag. Related #305 --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index e5a654c..bb99ee2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -35,7 +35,7 @@ int main(int argc, char** argv) { args::ValueFlagList executablePaths(parser, "executable", "Executable to deploy", {'e', "executable"}); - args::ValueFlagList deployDepsOnlyPaths(parser, "path", "Path to ELF file or directory containing such files (libraries or executables) in the AppDir whose dependencies shall be deployed by linuxdeploy without copying them into the AppDir", {"deploy-deps-only"}); + args::ValueFlagList deployDepsOnlyPaths(parser, "path", "Path to ELF file or directory containing such files (libraries or executables) already present in the AppDir whose dependencies shall be deployed by linuxdeploy without copying them again into the AppDir. rpath for these libraries or executables will be updated accordingly.", {"deploy-deps-only"}); args::ValueFlagList desktopFilePaths(parser, "desktop file", "Desktop file to deploy", {'d', "desktop-file"}); args::Flag createDesktopFile(parser, "", "Create basic desktop file that is good enough for some tests", {"create-desktop-file"});