From 898aa2ec63bf971191fdfbf3894351a1b5ccecd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vi=CC=81ctor=20Falco=CC=81n?= Date: Fri, 3 Jul 2026 15:17:25 +0200 Subject: [PATCH] fix(worktree): remove double slash in storage/keys copy path --- 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