We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d47478 commit 1e1eff2Copy full SHA for 1e1eff2
src/DumbDbCommand.php
@@ -249,8 +249,9 @@ protected function fire(): int
249
250
try {
251
$dumper->dumpToFile($path);
252
- $filesize = Format::humanReadableSize(filesize($path));
253
- $this->info("Database dumped successfully to: $path ($filesize)");
+ $fullPath = realpath($path);
+ $filesize = Format::humanReadableSize(filesize($fullPath));
254
+ $this->info("Database dumped successfully to: $fullPath ($filesize)");
255
} catch (Exception $e) {
256
$this->error('Failed to dump database: '.$e->getMessage());
257
0 commit comments