This commit is contained in:
Jonathan Turner
2019-08-22 07:38:09 +12:00
parent 73e3402e2f
commit 78ca297e47
2 changed files with 14 additions and 2 deletions

View File

@ -35,6 +35,8 @@ fn mkdir(
args: MkdirArgs,
context: &RunnablePerItemContext,
) -> Result<VecDeque<ReturnValue>, ShellError> {
println!("shell clone");
let shell_manager = context.shell_manager.clone();
println!("mkdir");
shell_manager.mkdir(args, context)
}