mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
chg: [bash] Small PATH precedence issue.
This commit is contained in:
parent
f82c899e7b
commit
b60fd55efe
1 changed files with 2 additions and 1 deletions
|
@ -11,7 +11,7 @@ CYAN="\\033[1;36m"
|
||||||
|
|
||||||
# Getting CWD where bash script resides
|
# Getting CWD where bash script resides
|
||||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd |sed 's/bin//' )"
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd |sed 's/bin//' )"
|
||||||
AIL_HOME="${DIR}"
|
export AIL_HOME="${DIR}"
|
||||||
|
|
||||||
cd ${AIL_HOME}
|
cd ${AIL_HOME}
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ export AIL_REDIS=${AIL_HOME}/redis/src/
|
||||||
export AIL_ARDB=${AIL_HOME}/ardb/src/
|
export AIL_ARDB=${AIL_HOME}/ardb/src/
|
||||||
export AIL_VENV=${AIL_HOME}/AILENV/
|
export AIL_VENV=${AIL_HOME}/AILENV/
|
||||||
|
|
||||||
|
export PATH=$AIL_VENV/bin:$PATH
|
||||||
export PATH=$AIL_HOME:$PATH
|
export PATH=$AIL_HOME:$PATH
|
||||||
export PATH=$AIL_REDIS:$PATH
|
export PATH=$AIL_REDIS:$PATH
|
||||||
export PATH=$AIL_ARDB:$PATH
|
export PATH=$AIL_ARDB:$PATH
|
||||||
|
|
Loading…
Reference in a new issue