diff options
author | erwin <erwin@FreeBSD.org> | 2013-03-27 14:03:35 +0000 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2013-03-27 14:03:35 +0000 |
commit | b411080198736ed2af8f5d4b5a1946785439a000 (patch) | |
tree | e11930d4e343d766827288eaa56cdb74613a3f98 /Tools | |
parent | 4e2e3080bfd33111cee46cc56320397439a2c877 (diff) | |
download | FreeBSD-ports-b411080198736ed2af8f5d4b5a1946785439a000.zip FreeBSD-ports-b411080198736ed2af8f5d4b5a1946785439a000.tar.gz |
Replace linebreak with space instead of comma in address
list, to make the for loop lateron actually work.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/scripts/check-latest-link | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/check-latest-link b/Tools/scripts/check-latest-link index 84ebc35..02c63fd 100644 --- a/Tools/scripts/check-latest-link +++ b/Tools/scripts/check-latest-link @@ -41,7 +41,7 @@ cd ${PORTSDIR} grep -f .latest_dups .latest_link | sort -i -k4 > .latest_full -maint=$(awk '{print $2}' < .latest_full | sort -ui | tr '\n' ',') +maint=$(awk '{print $2}' < .latest_full | sort -ui | tr '\n' ' ') (echo "Dear port maintainers," echo |