Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/ll-builder/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ You can report bugs to the linyaps team under this project: https://github.com/O
->delimiter(',')
->allow_extra_args(false)
->type_name("modules");
buildRun->add_option("--workdir", runOpts.workdir, _("Working directory inside the app"))
buildRun->add_option("--workdir", runOpts.workdir, _("Specify the working directory where the application runs"))
->type_name("PATH");
buildRun->add_option(
"COMMAND",
Expand Down
5 changes: 4 additions & 1 deletion apps/ll-cli/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,10 @@ ll-cli run org.deepin.demo -- bash -x /path/to/bash/script)"));
_("Specify the runtime used by the application to run"))
->type_name("REF")
->check(validatorString);
cliRun->add_option("--workdir", runOptions.workdir, _("Working directory inside the app"))
cliRun
->add_option("--workdir",
runOptions.workdir,
_("Specify the working directory where the application runs"))
->type_name("PATH");
cliRun
->add_option("--extensions",
Expand Down
Loading
Loading