loopback_cluster: Find `fdbcli` from `$BUILD` path
Currently expects to find `fdbcli` in current path, which doesn't seem right. `fdbcli` should always be in the directory where we'll find `fdbserver`.
This commit is contained in:
parent
781255d2c2
commit
cf33cea0b4
|
@ -40,7 +40,7 @@ for i in `seq 1 $2` ; do
|
|||
${FDB} -p auto:${PORT_PREFIX}${j} -d $DATA -L $LOG -C $CLUSTER &
|
||||
done
|
||||
|
||||
CLI="$ROOT/bin/fdbcli -C ${CLUSTER} --exec"
|
||||
CLI="$BUILD/bin/fdbcli -C ${CLUSTER} --exec"
|
||||
( sleep 2 ; $CLI "configure new ssd single" ) &
|
||||
done;
|
||||
|
||||
|
|
Loading…
Reference in New Issue