diff options
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | debian/ept-cache.cron.weekly | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 9d28b06..8e9917f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,8 +7,10 @@ libept (0.5.29) unstable; urgency=low * Removed workaround for #487406 on arm. Closes: #533793 * Removed workaround for #459207 on cmake 2.4, and depend on cmake 2.6. Closes: #493200 + * Fixed cron job. Closes: #502608 + Thanks Frans Pop. - -- Enrico Zini <enrico@debian.org> Tue, 29 Sep 2009 15:09:47 +0100 + -- Enrico Zini <enrico@debian.org> Tue, 29 Sep 2009 15:29:32 +0100 libept (0.5.28) unstable; urgency=low diff --git a/debian/ept-cache.cron.weekly b/debian/ept-cache.cron.weekly index 923561b..fbd1025 100644 --- a/debian/ept-cache.cron.weekly +++ b/debian/ept-cache.cron.weekly @@ -1,4 +1,6 @@ #!/bin/sh # Update the data and index files of Debtags -test -x /usr/bin/ept-cache && /usr/bin/ept-cache reindex --quiet +if [ -x /usr/bin/ept-cache ]; then + /usr/bin/ept-cache reindex --quiet +fi |