Skip to content

Commit

Permalink
removes random env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
betafcc committed May 18, 2020
1 parent c2ff64d commit 58c8b1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
12 changes: 1 addition & 11 deletions clc
Original file line number Diff line number Diff line change
@@ -1,22 +1,12 @@
#!/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
clc_parse;
else
case "${1}" in
-v | --version)
echo 'v1.1.0'
echo 'v1.1.1'
;;
-e | --escape)
shift;
Expand Down
2 changes: 1 addition & 1 deletion src/clc.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 58c8b1c

Please sign in to comment.