From 4615d7a88002f2b3c7df847a27f783a710a69cc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Falc=C3=B3n?= Date: Fri, 3 Jul 2026 15:23:45 +0200 Subject: [PATCH] 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. --- worktree.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worktree.sh b/worktree.sh index 19b135f6..4d84ad88 100755 --- a/worktree.sh +++ b/worktree.sh @@ -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