diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-10-01 16:23:57 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-10-01 16:23:57 +0100 |
commit | 1780925946f5226ecf9d4a2bad8d8b64e5c84d38 (patch) | |
tree | 7e33af93b3cda3c2cf7bf8252617eb7ea53fec75 | |
parent | 4549aa1dd60caca6976251f2eee975c68edba2d7 (diff) | |
download | prosody-1780925946f5226ecf9d4a2bad8d8b64e5c84d38.tar.gz prosody-1780925946f5226ecf9d4a2bad8d8b64e5c84d38.zip |
configure: Suppress warning about '~' [SC2088]
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -127,6 +127,7 @@ while [ -n "$1" ] do value=$(echo "$1" | sed 's/[^=]*.\(.*\)/\1/') key=$(echo "$1" | sed 's/=.*//') + # shellcheck disable=SC2088 if echo "$value" | grep "~" >/dev/null 2>/dev/null then echo |