Fix relative path in build-script
The build-script assumed that it was nested two levels deep from the project's root directory, even if it is only nested one level deep; that bug is now fixed.
This commit is contained in:
parent
f40ba7f27e
commit
2037f9af8f
|
@ -1,7 +1,7 @@
|
|||
|
||||
cd $(dirname $0)
|
||||
SCRIPT_PATH=$(pwd)
|
||||
cd ../..
|
||||
cd ..
|
||||
PROJECT_PATH=$(pwd)
|
||||
|
||||
function list_modules() {
|
||||
|
|
Loading…
Reference in New Issue