From 80e7a8d5949b1aefe2c001a02b2dda599a3813cf Mon Sep 17 00:00:00 2001 From: JT <547158+jntrnr@users.noreply.github.com> Date: Tue, 5 Oct 2021 16:58:49 +1300 Subject: [PATCH] Update mv.rs --- crates/nu-command/src/filesystem/mv.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/filesystem/mv.rs b/crates/nu-command/src/filesystem/mv.rs index 58c9c6da..ebedb424 100644 --- a/crates/nu-command/src/filesystem/mv.rs +++ b/crates/nu-command/src/filesystem/mv.rs @@ -26,7 +26,7 @@ impl Command for Mv { ) .required( "destination", - SyntaxShape::FilePath, + SyntaxShape::Filepath, "the location to move files/directories to", ) }