From 658ce3cb627522b2061f4f316722728339ffb149 Mon Sep 17 00:00:00 2001 From: Khushboo Verma <43381712+vermakhushboo@users.noreply.github.com> Date: Tue, 22 Aug 2023 12:43:00 +0530 Subject: [PATCH] Updated email id --- app/console | 2 +- app/workers/builds.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);