From: martin f. krafft Date: Thu, 15 May 2008 12:08:33 +0000 (+0100) Subject: blank line after including file X-Git-Url: https://git.madduck.net/etc/ssh.git/commitdiff_plain/6e8a62ff9f2166db66b5fa39dd0d0da28255c852 blank line after including file --- diff --git a/.ssh/Makefile b/.ssh/Makefile index 6de2f30..56a0aa4 100644 --- a/.ssh/Makefile +++ b/.ssh/Makefile @@ -5,16 +5,16 @@ all: known_hosts authorized_keys config known_hosts: $(wildcard known_hosts.d/*) touch $@ for f in $^; do \ - echo; \ echo "### from $$f:"; \ + echo; \ cat $$f; \ done > $@ authorized_keys: $(wildcard authorized_keys.d/*) touch $@ for f in $^; do \ - echo; \ echo "### from $$f:"; \ + echo; \ cat $$f; \ done > $@