diff --git a/scripts/completions/fish-completion.fish b/scripts/completions/fish-completion.fish index 453d265..9977067 100644 --- a/scripts/completions/fish-completion.fish +++ b/scripts/completions/fish-completion.fish @@ -3,7 +3,7 @@ set -l commands --version -h --help --target= -p --printresult complete -c ybcon -f -a "(__fish_complete_suffix .ybcon)" complete -c ybcon -x -s h -l help -d "Print the help screen" complete -c ybcon -x -l version -d "Print the version" -complete -c ybcon -x -l buildInfo -d "Print the compiler name and the optimization flags used to build the ybcon executable" +complete -c ybcon -x -l buildInfo -d "Print informations about how the ybcon executable was built" complete -c ybcon -l parallel -k -d "Transpile files in parallel mode" complete -c ybcon -l target -k -f -a 'lua js py' -d "Set the transpilation target" complete -c ybcon -l newlines -k -f -a 'on off' -d "Enable or disable new lines" diff --git a/scripts/completions/zsh-completion.zsh b/scripts/completions/zsh-completion.zsh index 9c05154..ea58753 100644 --- a/scripts/completions/zsh-completion.zsh +++ b/scripts/completions/zsh-completion.zsh @@ -4,7 +4,7 @@ _ybcon() { _arguments \ '( - 0)'{-h,--help}'[Print the help screen]' \ '( - 0)'--version'[Print the version]' \ - '( - 0)'--buildInfo'[Print the compiler name and the optimization flags used to build the ybcon executable]' \ + '( - 0)'--buildInfo'[Print informations about how the ybcon executable was built]' \ --parallel'[Transpile files in parallel mode]' \ --target='[Set the transpilation target]:language:(lua js py)' \ --newlines='[Enable or disable new lines]:state:(on off)' \ diff --git a/scripts/ybcon b/scripts/ybcon index e1f4309..f086ed0 100755 --- a/scripts/ybcon +++ b/scripts/ybcon @@ -14,7 +14,7 @@ usage() { echo "$EXENAME [--version] [--buildInfo] [-h|--help] [--parallel] [--target=] [--newlines=on/off] [-p|--printresult] " if [ "$1" = true ]; then echo " --version Print the version" - echo " --buildInfo Print the compiler name and the optimization flags used to build the ybcon executable" + echo " --buildInfo Print informations about how the ybcon executable was built" echo " -h or --help What you're seeing right now" echo " --parallel Transpile files in parallel mode" echo " --target= Set the transpilation target"