diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-09-02 19:39:23 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-09-02 19:39:23 (EDT) |
commit | 4201b6f84e54a19b1d2e9c31ff44f32334ab0ced (patch) | |
tree | 685b0ee8397a170cdddfe4b62a9c7a932e6e3177 /src/garbage.sh | |
parent | 1b84ff941776877dbd15a06fe3da22422ad3a0a0 (diff) |
index, garbage: Use ${MD5SUM}, ${SHA256SUM}, ${GZIP}, and ${DATE}
Diffstat (limited to 'src/garbage.sh')
-rw-r--r-- | src/garbage.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/garbage.sh b/src/garbage.sh index f7e96f7..58dab41 100644 --- a/src/garbage.sh +++ b/src/garbage.sh @@ -32,7 +32,7 @@ collect_garbage() # NB: The %s format conversion specifier is not specified by POSIX, but # it is supported by the GNU and BusyBox implementations of date. - cur_time=$(date '+%s') + cur_time=$("${DATE}" '+%s') for garbage in "${base_dir}/.db/garbage/"*; do if [ ! -f "${garbage}" ]; then |