summaryrefslogtreecommitdiff
path: root/cli/args
diff options
context:
space:
mode:
Diffstat (limited to 'cli/args')
-rw-r--r--cli/args/flags.rs48
-rw-r--r--cli/args/mod.rs17
2 files changed, 47 insertions, 18 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs
index 720d8db3b..bd6b30e41 100644
--- a/cli/args/flags.rs
+++ b/cli/args/flags.rs
@@ -613,7 +613,7 @@ pub struct Flags {
pub internal: InternalFlags,
pub ignore: Vec<String>,
pub import_map_path: Option<String>,
- pub env_file: Option<String>,
+ pub env_file: Option<Vec<String>>,
pub inspect_brk: Option<SocketAddr>,
pub inspect_wait: Option<SocketAddr>,
pub inspect: Option<SocketAddr>,
@@ -3775,12 +3775,14 @@ fn env_file_arg() -> Arg {
.help(cstr!(
"Load environment variables from local file
<p(245)>Only the first environment variable with a given key is used.
- Existing process environment variables are not overwritten.</>"
+ Existing process environment variables are not overwritten, so if variables with the same names already exist in the environment, their values will be preserved.
+ Where multiple declarations for the same environment variable exist in your .env file, the first one encountered is applied. This is determined by the order of the files you pass as arguments.</>"
))
.value_hint(ValueHint::FilePath)
.default_missing_value(".env")
.require_equals(true)
.num_args(0..=1)
+ .action(ArgAction::Append)
}
fn reload_arg() -> Arg {
@@ -5487,7 +5489,9 @@ fn import_map_arg_parse(flags: &mut Flags, matches: &mut ArgMatches) {
}
fn env_file_arg_parse(flags: &mut Flags, matches: &mut ArgMatches) {
- flags.env_file = matches.remove_one::<String>("env-file");
+ flags.env_file = matches
+ .get_many::<String>("env-file")
+ .map(|values| values.cloned().collect());
}
fn reload_arg_parse(
@@ -7423,7 +7427,7 @@ mod tests {
allow_all: true,
..Default::default()
},
- env_file: Some(".example.env".to_owned()),
+ env_file: Some(vec![".example.env".to_owned()]),
..Flags::default()
}
);
@@ -7517,7 +7521,7 @@ mod tests {
allow_all: true,
..Default::default()
},
- env_file: Some(".example.env".to_owned()),
+ env_file: Some(vec![".example.env".to_owned()]),
unsafely_ignore_certificate_errors: Some(vec![]),
..Flags::default()
}
@@ -8165,7 +8169,7 @@ mod tests {
subcommand: DenoSubcommand::Run(RunFlags::new_default(
"script.ts".to_string(),
)),
- env_file: Some(".env".to_owned()),
+ env_file: Some(vec![".env".to_owned()]),
code_cache_enabled: true,
..Flags::default()
}
@@ -8181,7 +8185,7 @@ mod tests {
subcommand: DenoSubcommand::Run(RunFlags::new_default(
"script.ts".to_string(),
)),
- env_file: Some(".env".to_owned()),
+ env_file: Some(vec![".env".to_owned()]),
code_cache_enabled: true,
..Flags::default()
}
@@ -8214,7 +8218,7 @@ mod tests {
subcommand: DenoSubcommand::Run(RunFlags::new_default(
"script.ts".to_string(),
)),
- env_file: Some(".another_env".to_owned()),
+ env_file: Some(vec![".another_env".to_owned()]),
code_cache_enabled: true,
..Flags::default()
}
@@ -8235,7 +8239,29 @@ mod tests {
subcommand: DenoSubcommand::Run(RunFlags::new_default(
"script.ts".to_string(),
)),
- env_file: Some(".another_env".to_owned()),
+ env_file: Some(vec![".another_env".to_owned()]),
+ code_cache_enabled: true,
+ ..Flags::default()
+ }
+ );
+ }
+
+ #[test]
+ fn run_multiple_env_file_defined() {
+ let r = flags_from_vec(svec![
+ "deno",
+ "run",
+ "--env-file",
+ "--env-file=.two_env",
+ "script.ts"
+ ]);
+ assert_eq!(
+ r.unwrap(),
+ Flags {
+ subcommand: DenoSubcommand::Run(RunFlags::new_default(
+ "script.ts".to_string(),
+ )),
+ env_file: Some(vec![".env".to_owned(), ".two_env".to_owned()]),
code_cache_enabled: true,
..Flags::default()
}
@@ -8378,7 +8404,7 @@ mod tests {
allow_read: Some(vec![]),
..Default::default()
},
- env_file: Some(".example.env".to_owned()),
+ env_file: Some(vec![".example.env".to_owned()]),
..Flags::default()
}
);
@@ -10053,7 +10079,7 @@ mod tests {
unsafely_ignore_certificate_errors: Some(vec![]),
v8_flags: svec!["--help", "--random-seed=1"],
seed: Some(1),
- env_file: Some(".example.env".to_owned()),
+ env_file: Some(vec![".example.env".to_owned()]),
..Flags::default()
}
);
diff --git a/cli/args/mod.rs b/cli/args/mod.rs
index 318a6ca76..ec75d7a10 100644
--- a/cli/args/mod.rs
+++ b/cli/args/mod.rs
@@ -1128,7 +1128,7 @@ impl CliOptions {
self.flags.otel_config()
}
- pub fn env_file_name(&self) -> Option<&String> {
+ pub fn env_file_name(&self) -> Option<&Vec<String>> {
self.flags.env_file.as_ref()
}
@@ -1935,19 +1935,22 @@ pub fn config_to_deno_graph_workspace_member(
})
}
-fn load_env_variables_from_env_file(filename: Option<&String>) {
- let Some(env_file_name) = filename else {
+fn load_env_variables_from_env_file(filename: Option<&Vec<String>>) {
+ let Some(env_file_names) = filename else {
return;
};
- match from_filename(env_file_name) {
- Ok(_) => (),
- Err(error) => {
- match error {
+
+ for env_file_name in env_file_names.iter().rev() {
+ match from_filename(env_file_name) {
+ Ok(_) => (),
+ Err(error) => {
+ match error {
dotenvy::Error::LineParse(line, index)=> log::info!("{} Parsing failed within the specified environment file: {} at index: {} of the value: {}",colors::yellow("Warning"), env_file_name, index, line),
dotenvy::Error::Io(_)=> log::info!("{} The `--env-file` flag was used, but the environment file specified '{}' was not found.",colors::yellow("Warning"),env_file_name),
dotenvy::Error::EnvVar(_)=> log::info!("{} One or more of the environment variables isn't present or not unicode within the specified environment file: {}",colors::yellow("Warning"),env_file_name),
_ => log::info!("{} Unknown failure occurred with the specified environment file: {}", colors::yellow("Warning"), env_file_name),
}
+ }
}
}
}