fix 'No Such File' error when execute script out of druid installation directory (#3517)

This commit is contained in:
kaijianding 2016-11-02 00:57:09 +08:00 committed by Fangjin Yang
parent 45940d6e40
commit f1dee037d6
5 changed files with 5 additions and 0 deletions

View File

@ -7,4 +7,5 @@ if [ $# -lt 1 ]; then
exit 1
fi
cd $(dirname $0)/../
sh ./bin/node.sh broker $1

View File

@ -7,4 +7,5 @@ if [ $# -lt 1 ]; then
exit 1
fi
cd $(dirname $0)/../
sh ./bin/node.sh coordinator $1

View File

@ -7,4 +7,5 @@ if [ $# -lt 1 ]; then
exit 1
fi
cd $(dirname $0)/../
sh ./bin/node.sh historical $1

View File

@ -7,4 +7,5 @@ if [ $# -lt 1 ]; then
exit 1
fi
cd $(dirname $0)/../
sh ./bin/node.sh middleManager $1

View File

@ -7,4 +7,5 @@ if [ $# -lt 1 ]; then
exit 1
fi
cd $(dirname $0)/../
sh ./bin/node.sh overlord $1