From f54a45d09c9b07342477f6233e130e149a3ad429 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sun, 12 Mar 2023 19:03:44 -0700 Subject: [PATCH] Add missing builtin_print_help in realpath This got dropped in the port. --- fish-rust/src/builtins/realpath.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/fish-rust/src/builtins/realpath.rs b/fish-rust/src/builtins/realpath.rs index 902a61f3b..5c746b0eb 100644 --- a/fish-rust/src/builtins/realpath.rs +++ b/fish-rust/src/builtins/realpath.rs @@ -87,6 +87,7 @@ pub fn realpath( 0, args.len() - 1 )); + builtin_print_help(parser, streams, cmd); return STATUS_INVALID_ARGS; }