Remove quotes
This commit is contained in:
parent
5ab9a4cb05
commit
9801333767
|
@ -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)
|
unique_ports=$(grep -r "_ONION_PORT=" $FILES | awk -F ':' '{print $2}' | uniq | awk -F '=' '{print $2}' | uniq)
|
||||||
if [[ "$ports" != "$unique_ports" ]]; then
|
if [[ "$ports" != "$unique_ports" ]]; then
|
||||||
echo $'Some onion ports are clashing'
|
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
|
exit 637252
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue