mirror of
https://github.com/mrworf/plexupdate.git
synced 2025-08-21 05:43:20 -07:00
More missing quotes (#133)
This commit is contained in:
parent
a0cab09509
commit
a94fda2265
1 changed files with 6 additions and 2 deletions
|
@ -396,10 +396,14 @@ if [ "${SAVECONFIG}" = "yes" ]; then
|
|||
-o ${VAR} = "QUIET" ]; then
|
||||
|
||||
if [ ${!VAR} = "yes" ]; then
|
||||
echo "${VAR}=${!VAR}" >> ${CONFIGFILE}
|
||||
echo "${VAR}='${!VAR}'" >> ${CONFIGFILE}
|
||||
fi
|
||||
elif [ ${VAR} = "PLEXPORT" ]; then
|
||||
if [ ! "${!VAR}" = "32400" ]; then
|
||||
echo "${VAR}='${!VAR}'" >> ${CONFIGFILE}
|
||||
fi
|
||||
else
|
||||
echo "${VAR}=${!VAR}" >> ${CONFIGFILE}
|
||||
echo "${VAR}='${!VAR}'" >> ${CONFIGFILE}
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue