Remove quotes

This commit is contained in:
Bob Mottram 2018-03-02 23:23:55 +00:00
parent 5ab9a4cb05
commit 9801333767
1 changed files with 2 additions and 1 deletions

View File

@ -141,7 +141,8 @@ function test_unique_onion_ports {
unique_ports=$(grep -r "_ONION_PORT=" $FILES | awk -F ':' '{print $2}' | uniq | awk -F '=' '{print $2}' | uniq)
if [[ "$ports" != "$unique_ports" ]]; then
echo $'Some onion ports are clashing'
grep -r "_ONION_PORT=" "$FILES" | awk -F ':' '{print $2}' | uniq
# shellcheck disable=SC2086
grep -r "_ONION_PORT=" $FILES | awk -F ':' '{print $2}' | uniq
exit 637252
fi
}