summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-06-15 00:40:28 +0200
committertv <tv@shackspace.de>2015-06-15 00:40:28 +0200
commit9abc41056323fc0af22dd1cfaf8083f34a633472 (patch)
treecfa488f421213d76ef6c1d0ee171c5cfb15edfda /modules
parent61f60acc3321cf568002914fbdb8da549f6dc2e0 (diff)
modules/tv/git: simplify sanity-check printf
Diffstat (limited to 'modules')
-rw-r--r--modules/tv/git.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tv/git.nix b/modules/tv/git.nix
index b7c8b56a..d264125d 100644
--- a/modules/tv/git.nix
+++ b/modules/tv/git.nix
@@ -216,8 +216,8 @@ in
find "$dataDir" -mindepth 2 -maxdepth 2 -name hooks -type l -delete
bad_hooks=$(find "$dataDir" -mindepth 2 -maxdepth 2 -name hooks)
if echo "$bad_hooks" | grep -q .; then
- printf "$(printf 'error: unknown hooks:\n%s' \
- "$(echo "$bad_hooks" | sed 's/^/ /')")" \
+ printf 'error: unknown hooks:\n%s\n' \
+ "$(echo "$bad_hooks" | sed 's/^/ /')" \
>&2
exit -1
fi