From b375f74d735cd2b43a06fc05e81c2a275491e3fe Mon Sep 17 00:00:00 2001 From: Luke Towers Date: Mon, 14 Oct 2024 23:17:14 -0600 Subject: [PATCH] Use local path for sqlite in winter:install --- modules/system/console/WinterInstall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/console/WinterInstall.php b/modules/system/console/WinterInstall.php index 5f600f640..23cedb057 100644 --- a/modules/system/console/WinterInstall.php +++ b/modules/system/console/WinterInstall.php @@ -339,7 +339,7 @@ protected function setupDatabaseSqlite() $this->setupDatabaseSqlite(); } - return ['database' => $filename]; + return ['database' => Str::after($filename, base_path() . DIRECTORY_SEPARATOR)]; } protected function setupDatabaseSqlsrv()