diff --git a/clc b/clc index 40d6152..68864c2 100755 --- a/clc +++ b/clc @@ -1,14 +1,4 @@ #!/usr/bin/env bash -_system_arch=x86_64 -_system_name=Mint -_system_type=Linux -_system_version=19.1 -gvm_go_name=go1.12.5 -gvm_pkgset_name=global -rvm_bin_path=/home/betafcc/.rvm/bin -rvm_path=/home/betafcc/.rvm -rvm_prefix=/home/betafcc -rvm_version='1.29.7 (latest)' clc () { if [ $# -eq 0 ]; then @@ -16,7 +6,7 @@ clc () else case "${1}" in -v | --version) - echo 'v1.1.0' + echo 'v1.1.1' ;; -e | --escape) shift; diff --git a/src/clc.bash b/src/clc.bash index 6d9356b..2c683fd 100644 --- a/src/clc.bash +++ b/src/clc.bash @@ -3,7 +3,7 @@ clc() { clc_parse else case "${1}" in - -v|--version) echo 'v1.1.0';; + -v|--version) echo 'v1.1.1';; -e|--escape) shift; clc "$@" | sed -E 's,(\x1B\[[0-9;]*[a-zA-Z]),\\\[\1\\\],g';; *) printf '%s' "$@" | clc esac