From e904ab623272e668d6b809b9907edd1396733e63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Sun, 9 Mar 2025 15:07:25 +0100 Subject: [PATCH] Fix path issue --- src/Appwrite/Platform/Modules/Functions/Workers/Builds.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Modules/Functions/Workers/Builds.php b/src/Appwrite/Platform/Modules/Functions/Workers/Builds.php index 0e16a0040e..dee13c83ce 100644 --- a/src/Appwrite/Platform/Modules/Functions/Workers/Builds.php +++ b/src/Appwrite/Platform/Modules/Functions/Workers/Builds.php @@ -399,7 +399,7 @@ class Builds extends Action ); } - $tmpPath = '/tmp/builds/' . $deployment; + $tmpPath = '/tmp/builds/' . $deploymentId; $tmpPathFile = $tmpPath . '/code.tar.gz'; $localDevice = new Local();