* Fix swapped PATH env var separators * Support pathvar to manipulate other vars than PATH * Add tests for pathvar and its subcommands * Fix PATH env name for Windows Seems like Windows uses PATH as well. Co-authored-by: Jakub Žádník <jakub.zadnik@tuni.fi>
64 lines
1.9 KiB
Rust
64 lines
1.9 KiB
Rust
use super::get_var;
|
|
use crate::prelude::*;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{Signature, SyntaxShape, UntaggedValue};
|
|
use nu_test_support::NATIVE_PATH_ENV_SEPARATOR;
|
|
|
|
pub struct SubCommand;
|
|
|
|
impl WholeStreamCommand for SubCommand {
|
|
fn name(&self) -> &str {
|
|
"pathvar reset"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("pathvar reset").named(
|
|
"var",
|
|
SyntaxShape::String,
|
|
"Use a different variable than PATH",
|
|
Some('v'),
|
|
)
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Reset the pathvar to the one specified in the config"
|
|
}
|
|
|
|
fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
reset(args)
|
|
}
|
|
}
|
|
|
|
pub fn reset(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
let name = args.call_info.name_tag.clone();
|
|
let ctx = &args.context;
|
|
|
|
let var = get_var(&args)?;
|
|
let var_lower = var.clone().map(|s| s.to_lowercase());
|
|
|
|
if let Some(global_cfg) = &mut ctx.configs().lock().global_config {
|
|
let default_pathvar = global_cfg.vars.get(&var_lower.item);
|
|
if let Some(pathvar) = default_pathvar {
|
|
if let UntaggedValue::Table(paths) = &pathvar.value {
|
|
let pathvar_str = paths
|
|
.iter()
|
|
.map(|x| x.as_string().expect("Error converting path to string"))
|
|
.join(&NATIVE_PATH_ENV_SEPARATOR.to_string());
|
|
ctx.scope.add_env_var(&var.item, pathvar_str);
|
|
}
|
|
} else {
|
|
return Err(ShellError::untagged_runtime_error(&format!(
|
|
"Default {} is not set in config file.",
|
|
&var_lower.item
|
|
)));
|
|
}
|
|
Ok(OutputStream::empty())
|
|
} else {
|
|
let value = UntaggedValue::Error(crate::commands::config::err_no_global_cfg_present())
|
|
.into_value(name);
|
|
|
|
Ok(OutputStream::one(value))
|
|
}
|
|
}
|