/bin/sh wants '=' in comparision, not '=='
This commit is contained in:
parent
979410d8e6
commit
8a63c498cb
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
if [ "${SEBSERVER_MODE}" == "gui" ]; then exec java \
|
||||
if [ "${SEBSERVER_MODE}" = "gui" ]; then exec java \
|
||||
-Xms64M \
|
||||
-Xmx1G \
|
||||
-jar "seb-server.jar" \
|
||||
|
|
Loading…
Add table
Reference in a new issue