From 760f995fa0ec274ce02d8f9d4dd2ef1a1b03f97a Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Mon, 20 Apr 2026 09:41:14 +0300 Subject: [PATCH] add line break to echo of file name --- data/wipeDb.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/wipeDb.php b/data/wipeDb.php index c36b4af..4183d5b 100644 --- a/data/wipeDb.php +++ b/data/wipeDb.php @@ -6,7 +6,7 @@ $files = [ ]; foreach ($files as $file) { - echo __DIR__ . "/$file"; + echo __DIR__ . "/$file\n"; $path = __DIR__ . "/$file"; file_put_contents($path, json_encode([], JSON_PRETTY_PRINT)); }