1
0
Fork 0
mirror of synced 2024-09-30 17:26:48 +13:00

Fix hidden files not copied when generating SDKs

This commit is contained in:
Jake Barnby 2024-02-23 18:32:15 +13:00
parent 7c42a59c85
commit 82efd57146
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -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 . '