From: martin f. krafft Date: Thu, 22 May 2008 08:14:17 +0000 (+0200) Subject: fix spacing in generated files X-Git-Url: https://git.madduck.net/etc/ssh.git/commitdiff_plain/262a8f5851c67e1f4603541b2854741b3c5be70e?hp=34196c8459e22561d7a5143c2482b7a31ec1fcd0 fix spacing in generated files --- diff --git a/.ssh/Makefile b/.ssh/Makefile index 56a0aa4..8010373 100644 --- a/.ssh/Makefile +++ b/.ssh/Makefile @@ -6,16 +6,16 @@ known_hosts: $(wildcard known_hosts.d/*) touch $@ for f in $^; do \ echo "### from $$f:"; \ - echo; \ cat $$f; \ + echo; \ done > $@ authorized_keys: $(wildcard authorized_keys.d/*) touch $@ for f in $^; do \ echo "### from $$f:"; \ - echo; \ cat $$f; \ + echo; \ done > $@ SSH_VERSION = $(shell ssh -V 2>&1)