fix(worktree): remove double slash in storage/keys copy path

This commit is contained in:
Víctor Falcón 2026-07-03 15:17:25 +02:00
parent eb31455e60
commit 898aa2ec63
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
ROOT_PATH=$1
cp "$ROOT_PATH/.env" .env
cp -r "$ROOT_PATH//storage/keys" ./storage/keys
cp -r "$ROOT_PATH/storage/keys" ./storage/keys
bun i
composer install