summaryrefslogtreecommitdiff
path: root/cli/args/flags.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-11-19 18:20:14 -0500
committerGitHub <noreply@github.com>2024-11-19 23:20:14 +0000
commit6b478cd0a3fdff15d5d9d8849a3019652b919921 (patch)
treea230be068b8c01b127ee4fd26a0e6d54239f1188 /cli/args/flags.rs
parent46b6037644c761369e689704f8e7b857959da155 (diff)
feat(compile): ability to embed directory in executable (#26939)
Diffstat (limited to 'cli/args/flags.rs')
-rw-r--r--cli/args/flags.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs
index 85b8abefe..f40d5aed4 100644
--- a/cli/args/flags.rs
+++ b/cli/args/flags.rs
@@ -1909,10 +1909,10 @@ On the first invocation with deno will download the proper binary and cache it i
Arg::new("include")
.long("include")
.help(
- cstr!("Includes an additional module or local data file in the compiled executable.
+ cstr!("Includes an additional module or file/directory in the compiled executable.
<p(245)>Use this flag if a dynamically imported module or a web worker main module
- fails to load in the executable or to embed a file in the executable. This flag can
- be passed multiple times, to include multiple additional modules.</>",
+ fails to load in the executable or to embed a file or directory in the executable.
+ This flag can be passed multiple times, to include multiple additional modules.</>",
))
.action(ArgAction::Append)
.value_hint(ValueHint::FilePath)