From ebe89278840391e298e134168e0eef7076b02338 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Fri, 16 Sep 2022 09:00:19 +0200 Subject: [PATCH] start: make sure remaining args are passed to handlers --- utils/bin/start | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/bin/start b/utils/bin/start index 6374dd9..93cb968 100644 --- a/utils/bin/start +++ b/utils/bin/start @@ -61,8 +61,8 @@ while getopts ":wh" arg; do done if [ "$WSL_SSH_AGENT" = true ]; then - start_with_wsl_agent + start_with_wsl_agent "$@" else - start_with_windows_agent + start_with_windows_agent "$@" fi