cfgfoo

git clone https://orangeshoelaces.net/git/cfgfoo.git

adea960008a704f9e0e60675f2c22f3c39092ecd

Author: Vasilii Kolobkov on 12/22/2018

Committer: Vasilii Kolobkov on 12/22/2018

End crontab lines with \n

Stats

steps/crontab/add | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/steps/crontab/add b/steps/crontab/add
index 7dc1575..12dea5f 100644
--- a/steps/crontab/add
+++ b/steps/crontab/add
@@ -8,5 +8,5 @@ take_step() {
 }
 
 format_crontab_ln() {
-	printf '%s\t%s\t%s\t%s\t%s\t%s' "$@"
+	printf '%s\t%s\t%s\t%s\t%s\t%s\n' "$@"
 }