2019-04-11 15:23:14 -07:00
|
|
|
use crate::common::*;
|
2017-11-16 23:30:08 -08:00
|
|
|
|
|
|
|
pub trait CommandExt {
|
|
|
|
fn export_environment_variables<'a>(
|
|
|
|
&mut self,
|
2019-04-11 15:23:14 -07:00
|
|
|
scope: &BTreeMap<&'a str, String>,
|
|
|
|
dotenv: &BTreeMap<String, String>,
|
|
|
|
exports: &BTreeSet<&'a str>,
|
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,
|
2019-04-11 15:23:14 -07:00
|
|
|
scope: &BTreeMap<&'a str, String>,
|
|
|
|
dotenv: &BTreeMap<String, String>,
|
|
|
|
exports: &BTreeSet<&'a str>,
|
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);
|
|
|
|
}
|
2017-11-16 23:30:08 -08:00
|
|
|
for name in exports {
|
|
|
|
if let Some(value) = scope.get(name) {
|
|
|
|
self.env(name, value);
|
|
|
|
} else {
|
|
|
|
return Err(RuntimeError::Internal {
|
2018-12-08 14:29:41 -08:00
|
|
|
message: format!("scope does not contain exported variable `{}`", name),
|
2017-11-16 23:30:08 -08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|