diff --git a/app/console b/app/console index 495a9c2530..e23424ed6a 160000 --- a/app/console +++ b/app/console @@ -1 +1 @@ -Subproject commit 495a9c25302bb79156773ef0668b3eef07ce3dd1 +Subproject commit e23424ed6af1d96a169e87337f32d1d84d5e19f4 diff --git a/app/workers/builds.php b/app/workers/builds.php index faf2165d81..9e3d75bb05 100644 --- a/app/workers/builds.php +++ b/app/workers/builds.php @@ -213,7 +213,7 @@ class BuildsV1 extends Worker Console::execute('cp -rfn ' . $tmpTemplateDirectory . '/' . $templateRootDirectory . '/* ' . $tmpDirectory . '/' . $rootDirectory, '', $stdout, $stderr); // Commit and push - $exit = Console::execute('git config --global user.email "security@appwrite.io" && git config --global user.name "Appwrite" && cd ' . $tmpDirectory . ' && git add . && git commit -m "Create \'' . \escapeshellcmd($function->getAttribute('name', '')) . '\' function" && git push origin ' . \escapeshellcmd($branchName), '', $stdout, $stderr); + $exit = Console::execute('git config --global user.email "team@appwrite.io" && git config --global user.name "Appwrite" && cd ' . $tmpDirectory . ' && git add . && git commit -m "Create \'' . \escapeshellcmd($function->getAttribute('name', '')) . '\' function" && git push origin ' . \escapeshellcmd($branchName), '', $stdout, $stderr); if ($exit !== 0) { throw new \Exception('Unable to push code repository: ' . $stderr);