diff options
author | Dan McGee <dan@archlinux.org> | 2010-10-11 12:28:52 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-10-11 12:28:52 -0500 |
commit | 7711a02ed5ce1be7f5f0cb572a1efc4c29b6dfe0 (patch) | |
tree | e8dbe3366f3c8a87d5a9a489b7b0d37342604325 /cron-jobs/update-web-db | |
parent | 44c24c5d8e98eb51c8612dfaaac3ddd2ce0337dd (diff) |
Fix missing output redirection
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'cron-jobs/update-web-db')
-rwxr-xr-x | cron-jobs/update-web-db | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cron-jobs/update-web-db b/cron-jobs/update-web-db index 275676e..3f4a2fc 100755 --- a/cron-jobs/update-web-db +++ b/cron-jobs/update-web-db @@ -36,7 +36,7 @@ for repo in ${REPOS}; do if [[ -f $dbfile ]]; then echo "Updating ${repo}-${arch}" >> "${LOGOUT}" ./manage.py reporead ${flags} ${arch} ${dbfile} >> "${LOGOUT}" 2>&1 - echo "" + echo "" >> "${LOGOUT}" fi done done |