From 27dcbe5c8aab18ae865ec440100dc66dd77fecb9 Mon Sep 17 00:00:00 2001 From: jacremer Date: Mon, 4 Oct 2021 22:08:15 -0700 Subject: [PATCH] fix SyntaxShape::Filepath build error --- 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 4955cf003..19cdf0d89 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", ) }