Revert "escaped every parameter in all scripts"

This reverts commit c0897eebb7.
This commit is contained in:
ttionya
2021-02-24 01:03:26 +08:00
parent 8528a048f7
commit 0304ca7929
7 changed files with 40 additions and 40 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
. /app/includes.sh
@@ -37,7 +37,7 @@ fi
function configure_timezone() {
if [[ ! -f /etc/localtime || ! -f /etc/timezone ]]; then
cp -f "/usr/share/zoneinfo/${TIMEZONE}" /etc/localtime
cp -f /usr/share/zoneinfo/${TIMEZONE} /etc/localtime
echo "${TIMEZONE}" > /etc/timezone
fi
}