diff --git a/rc/enhancd.sh b/rc/enhancd.sh index 95a223c..6f8b51e 100644 --- a/rc/enhancd.sh +++ b/rc/enhancd.sh @@ -1,5 +1,7 @@ -if [[ -f WORKSPAACE/opt/enhancd/init.sh ]]; then - source $WORKSPACE/opt/enhancd/init.sh +_INIT_FILE=$WORKSPACE/opt/enhancd/init.sh + +if [[ -f $_INIT_FILE ]]; then + source $_INIT_FILE unalias cd alias ecd="__enhancd::cd" fi diff --git a/rc/go-env.sh b/rc/go-env.sh.skip similarity index 100% rename from rc/go-env.sh rename to rc/go-env.sh.skip diff --git a/rc/psql-env.sh b/rc/psql-env.sh deleted file mode 100644 index 40b3bf5..0000000 --- a/rc/psql-env.sh +++ /dev/null @@ -1,3 +0,0 @@ -export PGHOST=localhost -export PGUSER=postgres -export PGPASSWORD=passw0rd diff --git a/rc/tiger.sh b/rc/tiger.sh deleted file mode 100644 index d30d7a4..0000000 --- a/rc/tiger.sh +++ /dev/null @@ -1 +0,0 @@ -alias turl='curl -H "Authorization: Bearer $API_TOKEN"'