From 6b354c2e89198e64a0244fb96cc5604312027800 Mon Sep 17 00:00:00 2001 From: Stephen Ostrow Date: Mon, 16 Jan 2023 05:04:32 -0500 Subject: [PATCH] update writable deploy recipe to use release_or_current_path (#3449) Updating this task to use release_or_current_path (from #2486) will allow the writable task to be used outside of deployment --- recipe/deploy/writable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/deploy/writable.php b/recipe/deploy/writable.php index ec0b8e82f..7fbc3e90d 100644 --- a/recipe/deploy/writable.php +++ b/recipe/deploy/writable.php @@ -72,7 +72,7 @@ throw new \RuntimeException('Absolute path not allowed in config parameter `writable_dirs`.'); } - cd('{{release_path}}'); + cd('{{release_or_current_path}}'); // Create directories if they don't exist run("mkdir -p $dirs");