mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-11-29 00:11:02 -05:00
14 lines
394 B
TypeScript
14 lines
394 B
TypeScript
import * as exec from './exec';
|
|
|
|
const git = async (args: string[] = []): Promise<string> => {
|
|
return await exec.exec(`git`, args, true).then(res => {
|
|
if (res.stderr != '' && !res.success) {
|
|
throw new Error(res.stderr);
|
|
}
|
|
return res.stdout.trim();
|
|
});
|
|
};
|
|
|
|
export async function setConfig(key: string, value: string): Promise<void> {
|
|
await git(['config', key, value]);
|
|
}
|