diff options
author | tv <tv@shackspace.de> | 2015-06-15 00:40:28 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-06-15 00:40:28 +0200 |
commit | 9abc41056323fc0af22dd1cfaf8083f34a633472 (patch) | |
tree | cfa488f421213d76ef6c1d0ee171c5cfb15edfda /modules/tv | |
parent | 61f60acc3321cf568002914fbdb8da549f6dc2e0 (diff) |
modules/tv/git: simplify sanity-check printf
Diffstat (limited to 'modules/tv')
-rw-r--r-- | modules/tv/git.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tv/git.nix b/modules/tv/git.nix index b7c8b56ae..d264125dc 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 |