Skip to content

Commit

Permalink
Merge branch 'develop' into 9.x
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone committed Aug 28, 2024
2 parents d7270ba + 06fe14a commit 6c42cf5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 35 deletions.
9 changes: 9 additions & 0 deletions bin/sync
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ $version = '11.x-dev';

$files->delete("{$workingPath}/laravel/.env");
$files->deleteDirectory("{$workingPath}/skeleton");
if ($files->isDirectory("{$workingPath}/laravel/migrations")) {
$files->deleteDirectory("{$workingPath}/laravel/migrations");
}

$files->ensureDirectoryExists("{$workingPath}/laravel/migrations");
$files->ensureDirectoryExists("{$workingPath}/laravel/migrations/cache");
$files->ensureDirectoryExists("{$workingPath}/laravel/migrations/notifications");
$files->ensureDirectoryExists("{$workingPath}/laravel/migrations/queue");
$files->ensureDirectoryExists("{$workingPath}/laravel/migrations/session");

$files->copy("{$workingPath}/vendor/orchestra/testbench-core/laravel/bootstrap/app.php", "{$workingPath}/laravel/bootstrap/app.php");
$files->copy("{$workingPath}/vendor/orchestra/testbench-core/laravel/server.php", "{$workingPath}/laravel/server.php");
Expand Down

This file was deleted.

0 comments on commit 6c42cf5

Please sign in to comment.