From 74fef65abb6564fa6a1ff4db873572b88c9fa465 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Mon, 28 Dec 2015 21:03:15 +0530 Subject: [PATCH] restore: display the backup creation date/time while selecting a backup --- assets/runtime/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/runtime/functions b/assets/runtime/functions index ea1c9ea7..542e7b67 100644 --- a/assets/runtime/functions +++ b/assets/runtime/functions @@ -1119,9 +1119,9 @@ execute_raketask() { fi echo - for b in $(ls ${GITLAB_BACKUP_DIR} | grep gitlab_backup | sort -r) + for b in $(ls ${GITLAB_BACKUP_DIR} | grep _gitlab_backup | sort -r) do - echo "‣ $b" + echo "‣ $b (created at $(date --date="@${b%%_gitlab_backup.tar}" +'%d %b, %G - %H:%M:%S %Z'))" done echo