mirror of https://github.com/apache/druid.git
fix 'No Such File' error when execute script out of druid installation directory (#3517)
This commit is contained in:
parent
45940d6e40
commit
f1dee037d6
|
@ -7,4 +7,5 @@ if [ $# -lt 1 ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
cd $(dirname $0)/../
|
||||
sh ./bin/node.sh broker $1
|
||||
|
|
|
@ -7,4 +7,5 @@ if [ $# -lt 1 ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
cd $(dirname $0)/../
|
||||
sh ./bin/node.sh coordinator $1
|
||||
|
|
|
@ -7,4 +7,5 @@ if [ $# -lt 1 ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
cd $(dirname $0)/../
|
||||
sh ./bin/node.sh historical $1
|
||||
|
|
|
@ -7,4 +7,5 @@ if [ $# -lt 1 ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
cd $(dirname $0)/../
|
||||
sh ./bin/node.sh middleManager $1
|
||||
|
|
|
@ -7,4 +7,5 @@ if [ $# -lt 1 ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
cd $(dirname $0)/../
|
||||
sh ./bin/node.sh overlord $1
|
||||
|
|
Loading…
Reference in New Issue