Skip to content
Snippets Groups Projects
Commit 98013337 authored by Bob Mottram's avatar Bob Mottram
Browse files

Remove quotes

parent 5ab9a4cb
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment