From c933c7e86e978afab66050c863b41a2bbc971ded Mon Sep 17 00:00:00 2001 From: Username404-59 Date: Fri, 26 Mar 2021 10:16:48 +0100 Subject: [PATCH] Include the --target option in the help dialog. --- scripts/ybcon | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ybcon b/scripts/ybcon index 117012d..af44eb8 100755 --- a/scripts/ybcon +++ b/scripts/ybcon @@ -11,10 +11,11 @@ defaultBinLocation="$scriptDir/../libexec/ybcon" usage() { if [ "$1" = false ]; then echo "Invalid arguments, usage:"; fi - echo "$EXENAME [--version] [-h|--help] [-p|--printresult] file" + echo "$EXENAME [--version] [-h|--help] [--target=] [-p|--printresult] " if [ "$1" = true ]; then echo " --version Print the version" echo " -h or --help What you're seeing right now" + echo " --target= Set the transpilation target" echo " -p or --printresult Enable printing the transpilation result to stdout" fi }