Skip to content

Commit

Permalink
remove old mv command in favor of umv (renamed to mv) (#12022)
Browse files Browse the repository at this point in the history
# Description

This PR removes our old nushell `mv` command in favor of the
uutils/coreutils `uu_mv` crate's `mv` command which we integrated in
0.90.1.

# User-Facing Changes

# Tests + Formatting

# After Submitting
  • Loading branch information
fdncred committed Mar 1, 2024
1 parent 4c4609d commit 262914c
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 890 deletions.
1 change: 0 additions & 1 deletion crates/nu-command/src/default_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ pub fn add_shell_command_context(mut engine_state: EngineState) -> EngineState {
Ls,
UMkdir,
Mktemp,
Mv,
UMv,
UCp,
Open,
Expand Down
2 changes: 0 additions & 2 deletions crates/nu-command/src/filesystem/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ mod du;
mod glob;
mod ls;
mod mktemp;
mod mv;
mod open;
mod rm;
mod save;
Expand All @@ -21,7 +20,6 @@ pub use du::Du;
pub use glob::Glob;
pub use ls::Ls;
pub use mktemp::Mktemp;
pub use mv::Mv;
pub use rm::Rm;
pub use save::Save;
pub use start::Start;
Expand Down
355 changes: 0 additions & 355 deletions crates/nu-command/src/filesystem/mv.rs

This file was deleted.

Loading

0 comments on commit 262914c

Please sign in to comment.