mirror of
https://github.com/correl/rebar.git
synced 2025-04-08 01:01:06 -09:00
Fix bashism
This commit is contained in:
parent
298687dd08
commit
9f5d35991f
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ case "$1" in
|
||||||
start)
|
start)
|
||||||
# Make sure there is not already a node running
|
# Make sure there is not already a node running
|
||||||
RES=`$NODETOOL ping`
|
RES=`$NODETOOL ping`
|
||||||
if [ "$RES" == "pong" ]; then
|
if [ "$RES" = "pong" ]; then
|
||||||
echo "Node is already running!"
|
echo "Node is already running!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue