mirror of
https://github.com/nushell/nushell
synced 2025-01-25 03:15:25 +00:00
b2c5af457e
This improves incremental build time when working on what was previously the root package. For example, previously all plugins would be rebuilt with a change to `src/commands/classified/external.rs`, but now only `nu-cli` will have to be rebuilt (and anything that depends on it).
34 lines
779 B
Rust
34 lines
779 B
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::prelude::*;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::Signature;
|
|
|
|
pub struct Pwd;
|
|
|
|
impl WholeStreamCommand for Pwd {
|
|
fn name(&self) -> &str {
|
|
"pwd"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("pwd")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Output the current working directory."
|
|
}
|
|
|
|
fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
pwd(args, registry)
|
|
}
|
|
}
|
|
|
|
pub fn pwd(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
let shell_manager = args.shell_manager.clone();
|
|
let args = args.evaluate_once(registry)?;
|
|
shell_manager.pwd(args)
|
|
}
|