Skip to content

Commit

Permalink
Display file name being downloaded (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanzweifel committed Mar 20, 2024
1 parent 311b61d commit 6b9997f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Actions/DownloadBackupAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function execute(PendingRestore $pendingRestore): void
$pendingRestore->getPathToLocalCompressedBackup(),
Storage::disk($pendingRestore->disk)->readStream($pendingRestore->backup)
);
}, 'Downloading backup …');
}, "Downloading {$pendingRestore->backup}");

info("Backup downloaded to {$pendingRestore->getPathToLocalCompressedBackup()}.");
}
Expand Down

0 comments on commit 6b9997f

Please sign in to comment.