1
0
Fork 0
mirror of https://github.com/correl/rebar.git synced 2025-03-29 17:00:10 -09:00

Fix bashism

This commit is contained in:
Tuncer Ayaz 2010-12-02 20:13:32 +01:00
parent 298687dd08
commit 9f5d35991f

View file

@ -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