зеркало из https://github.com/electron/trop.git
fix: restore setting user in git config (#278)
This commit is contained in:
Родитель
65c107ea08
Коммит
d4766f5008
|
@ -65,5 +65,10 @@ export const initRepo = async ({
|
|||
await git.clone(cacheDir, '.');
|
||||
});
|
||||
|
||||
const config = fs.readFileSync('./config.yml', 'utf8');
|
||||
const { tropEmail, tropName } = parse(config);
|
||||
await git.addConfig('user.email', tropEmail || 'trop@example.com');
|
||||
await git.addConfig('user.name', tropName || 'Trop Bot');
|
||||
|
||||
return { dir };
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче