fix(cli): mark app store repo as git safe folder before pulling
This commit is contained in:
parent
1d41f5de9b
commit
333c588293
1 changed files with 1 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue