X-Git-Url: https://git.madduck.net/etc/ssh.git/blobdiff_plain/9a8d342f1e31da934d02d4e16784e8aa6119093a..6e8a62ff9f2166db66b5fa39dd0d0da28255c852:/.ssh/Makefile?ds=sidebyside 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 > $@