From 82efd571469b03f1257906ba784bdafec61d8e38 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Fri, 23 Feb 2024 18:32:15 +1300 Subject: [PATCH] Fix hidden files not copied when generating SDKs --- src/Appwrite/Platform/Tasks/SDKs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Tasks/SDKs.php b/src/Appwrite/Platform/Tasks/SDKs.php index 5112a0b34d..2280c8d661 100644 --- a/src/Appwrite/Platform/Tasks/SDKs.php +++ b/src/Appwrite/Platform/Tasks/SDKs.php @@ -260,7 +260,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND git fetch origin ' . $gitBranch . ' && \ git pull origin ' . $gitBranch . ' && \ rm -rf ' . $target . '/* && \ - cp -r ' . $result . '/* ' . $target . '/ && \ + cp -r ' . $result . '/. ' . $target . '/ && \ git add . && \ git commit -m "' . $message . '" && \ git push -u origin ' . $gitBranch . '