diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-03-03 09:35:10 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-03-03 09:35:10 -0500 |
commit | 1a03caa188928d7877dbc98616fdabf28346664b (patch) | |
tree | 50a7b04b39f4f292202001654a32a683c85af7c1 | |
parent | 277fcdb3ab71ad96014c86c991c47c05e120f033 (diff) |
change Makefile to not break cron if there's no trailing newline
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ clean: ( echo '..'; find ~/Maildir -maxdepth 2 -type f -name "maildirfolder" -printf '%h\n'|sed -r 's@.*/(.*\.)(.*)@.\1\2@' )|sort>'$@' .crontab.cookie: .crontab .crontab.local - cat $^ | crontab - + (cat $^; echo) | crontab - date > '$@' # don't do anything, just create these if they doesn't exist |