diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2021-11-21 15:41:26 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-11-21 17:13:34 +0100 |
commit | 93e933278af4ce929a0bbcb35e1fdacdd6b899c1 (patch) | |
tree | 55e13d036e92c6d28b7d5cf4930a38ef7f5233c0 /utils | |
parent | ac5cce69cc9ae0d5a6c202a29261fd292dbfe892 (diff) | |
download | searxng-93e933278af4ce929a0bbcb35e1fdacdd6b899c1.tar.gz searxng-93e933278af4ce929a0bbcb35e1fdacdd6b899c1.zip |
[fix] filtron.sh & morty.sh: quote "$GO_ENV"
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/filtron.sh | 3 | ||||
-rwxr-xr-x | utils/morty.sh | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/utils/filtron.sh b/utils/filtron.sh index 8ad32a319..2536214e4 100755 --- a/utils/filtron.sh +++ b/utils/filtron.sh @@ -337,7 +337,8 @@ EOF echo "export SERVICE_HOME=$SERVICE_HOME" tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" -grep -qFs -- 'source $GO_ENV' ~/.profile || echo 'source $GO_ENV' >> ~/.profile +touch "$GO_ENV" +grep -qFs -- 'source "$GO_ENV"' ~/.profile || echo 'source "$GO_ENV"' >> ~/.profile EOF } diff --git a/utils/morty.sh b/utils/morty.sh index c1f2bc968..25263a3d4 100755 --- a/utils/morty.sh +++ b/utils/morty.sh @@ -337,7 +337,8 @@ EOF echo "export SERVICE_HOME=$SERVICE_HOME" tee_stderr <<EOF | sudo -i -u "$SERVICE_USER" -grep -qFs -- 'source $GO_ENV' ~/.profile || echo 'source $GO_ENV' >> ~/.profile +touch $GO_ENV +grep -qFs -- 'source "$GO_ENV"' ~/.profile || echo 'source "$GO_ENV"' >> ~/.profile EOF } |