From 1678cb25b49f4e2978f389de1bfd37a6751263bb Mon Sep 17 00:00:00 2001 From: Lucian Behind The Scenes Date: Wed, 25 Feb 2026 13:35:36 +0200 Subject: [PATCH] fix: ensure docs cache locks directory exists on deploy --- .deployer/scripts/deploy.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.deployer/scripts/deploy.sh b/.deployer/scripts/deploy.sh index b412bef..eb8c8c9 100644 --- a/.deployer/scripts/deploy.sh +++ b/.deployer/scripts/deploy.sh @@ -41,6 +41,7 @@ if [[ $framework == "laravel" ]]; then echo "→ Ensuring shared storage directories..." mkdir -p "${DEPLOYER_SHARED_PATH}/storage/"{app,framework,logs} mkdir -p "${DEPLOYER_SHARED_PATH}/storage/framework/"{cache,sessions,views} + mkdir -p "${DEPLOYER_SHARED_PATH}/storage/framework/cache/docs-output/.locks" echo "→ Linking shared storage..." rm -rf "${DEPLOYER_RELEASE_PATH}/storage"