fix(cli): mark app store repo as git safe folder before pulling

This commit is contained in:
Nicolas Meienberger 2023-08-28 22:02:42 +02:00 committed by Nicolas Meienberger
parent 1d41f5de9b
commit 333c588293

View file

@ -75,6 +75,7 @@ export class RepoExecutors {
this.logger.info(`Pulling repo ${repoUrl} to ${repoPath}`);
await execAsync(`git config --global --add safe.directory ${repoPath}`);
const { stdout, stderr } = await execAsync(`git -C ${repoPath} pull`);
if (stderr) {