Allow empty options

The config option e.g. ark_bRawSockets="" should result in the
...?bRawSockets
This commit is contained in:
Ben Peddell 2015-09-21 04:40:35 +10:00
parent 5c69404551
commit b977dc21bd

View File

@ -316,6 +316,8 @@ doRun() {
if [ -n "$val" ]; then
arkserveropts="${arkserveropts}?${name}=${val}"
else
arkserveropts="${arkserveropts}?${name}"
fi
done