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

Fixes a typo in `worktree.sh` where the source path had a double slash
(`$ROOT_PATH//storage/keys`) when copying signing keys into a new
worktree.
This commit is contained in:
Víctor Falcón 2026-07-03 15:23:45 +02:00 committed by GitHub
parent d55c3f41df
commit 4615d7a880
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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