just/src/command_ext.rs

30 lines
614 B
Rust
Raw Normal View History

use crate::common::*;
2017-11-16 23:30:08 -08:00
pub(crate) trait CommandExt {
2017-11-16 23:30:08 -08:00
fn export_environment_variables<'a>(
&mut self,
scope: &BTreeMap<&'a str, (bool, String)>,
dotenv: &BTreeMap<String, String>,
2017-11-17 17:28:06 -08:00
) -> RunResult<'a, ()>;
2017-11-16 23:30:08 -08:00
}
impl CommandExt for Command {
fn export_environment_variables<'a>(
&mut self,
scope: &BTreeMap<&'a str, (bool, String)>,
dotenv: &BTreeMap<String, String>,
2017-11-17 17:28:06 -08:00
) -> RunResult<'a, ()> {
2018-03-05 13:21:35 -08:00
for (name, value) in dotenv {
self.env(name, value);
}
for (name, (export, value)) in scope {
if *export {
2017-11-16 23:30:08 -08:00
self.env(name, value);
}
}
2017-11-16 23:30:08 -08:00
Ok(())
}
}