Fix issue with git cleanup in loc auto-pr script (#1619)

This commit is contained in:
Colen Garoutte-Carson 2021-01-15 15:07:19 -08:00 коммит произвёл GitHub
Родитель 1c491c8c5e
Коммит 8fb45bd1b5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -153,7 +153,10 @@ octokit.pulls.list({ owner: repoOwner, repo: repoName }).then(({data}) => {
console.log(`Restoring default git permissions`);
cp.execSync('git remote remove origin');
cp.execSync(`git remote add origin https://github.com/${repoOwner}/${repoName}.git`);
console.log(`Run 'git fetch' against updated remote`);
cp.execSync('git fetch');
console.log(`Switching back to develop (git checkout develop)`);
cp.execSync('git checkout develop');