mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-27 00:07:16 +00:00
fix: [bash] As we instantiate from a subdirectory, we need to take this into account.
This commit is contained in:
parent
e4ced241eb
commit
41a34b3519
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ YELLOW="\\033[1;33m"
|
||||||
CYAN="\\033[1;36m"
|
CYAN="\\033[1;36m"
|
||||||
|
|
||||||
# Getting CWD where bash script resides
|
# Getting CWD where bash script resides
|
||||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd |sed 's/bin//' )"
|
||||||
AIL_HOME="${DIR}"
|
AIL_HOME="${DIR}"
|
||||||
|
|
||||||
cd ${AIL_HOME}
|
cd ${AIL_HOME}
|
||||||
|
|
Loading…
Reference in a new issue