mirror of
https://github.com/correl/rebar.git
synced 2025-03-29 17:00:10 -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)
|
||||
# Make sure there is not already a node running
|
||||
RES=`$NODETOOL ping`
|
||||
if [ "$RES" == "pong" ]; then
|
||||
if [ "$RES" = "pong" ]; then
|
||||
echo "Node is already running!"
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue