aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/hydra/backup2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hydra/backup b/lib/hydra/backup
index 0fb6e80..000bc5a 100644
--- a/lib/hydra/backup
+++ b/lib/hydra/backup
@@ -19,7 +19,7 @@ function hydra_backup_environment_local_website {
# Try to get the newest if there's no backup for the current date
if [ ! -e "$RESTOREDIR/$SITE.tar.bz2" ]; then
- RESTOREDIR="$(find $BACKUPDIR -name "$SITE.tar.bz2" | sort -n | tail -n 1)"
+ RESTOREDIR="$(find $BACKUPDIR -name "$SITE.tar.bz2" -exec dirname {} \; | sort -n | tail -n 1)"
if [ -z "$RESTOREDIR" ]; then
echo "Backup not found for $DATE."