Skip to content

Commit

Permalink
Fix git maintenance tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed Feb 19, 2017
1 parent d2d6704 commit e326760
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cron/tasks/lmms/01-project-year
@@ -1,5 +1,5 @@
#!/bin/sh
set -e
set -e -o pipefail

YEAR=$(date -u +%Y)
while true
Expand Down
4 changes: 2 additions & 2 deletions cron/tasks/lmms/02-contributors
@@ -1,7 +1,7 @@
#!/bin/sh
set -e
set -e -o pipefail

git shortlog -sne | cut -c 8- > doc/CONTRIBUTORS
git shortlog -sne HEAD | cut -c 8- > doc/CONTRIBUTORS

git add doc/CONTRIBUTORS
if [ "$(git diff HEAD)" ]
Expand Down

0 comments on commit e326760

Please sign in to comment.