diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-01-14 13:31:11 -0800 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-01-14 13:31:11 -0800 |
commit | 5f64e9993a494040b0280ed0f1daa38f68f9c46b (patch) | |
tree | 852bf75c7060d36f0c5a6a2fe421beaa14fdda28 /cron-jobs/devlist-mailer | |
parent | a3fc31dc16b442bf492ab52f9c48d4ea230878d8 (diff) |
Remove HH:MM from devlist-mailer subject lines
This was extraneous info. Not needed as higher granularity can
be gleaned from the mail's date
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'cron-jobs/devlist-mailer')
-rwxr-xr-x | cron-jobs/devlist-mailer | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cron-jobs/devlist-mailer b/cron-jobs/devlist-mailer index 671cbbb..ca2e46b 100755 --- a/cron-jobs/devlist-mailer +++ b/cron-jobs/devlist-mailer @@ -6,9 +6,9 @@ LIST="arch-dev-public@archlinux.org" #LIST="aaronmgriffin@gmail.com" FROM="repomaint@archlinux.org" -SUBJECT="Repository Maintenance $(date +"%d-%m-%Y %H:%M")" +SUBJECT="Repository Maintenance $(date +"%d-%m-%Y")" if [ $# -ge 1 ]; then - SUBJECT="$1 $(date +"%d-%m-%Y %H:%M")" + SUBJECT="$1 $(date +"%d-%m-%Y")" fi if [ $# -ge 2 ]; then |