This commit is contained in:
parent
5b41a988cd
commit
17bd529115
|
@ -32,7 +32,7 @@ export async function cloneRepo(repo: string, out: string = __dirname): Promise<
|
||||||
export async function push(repo: string, out: string = __dirname): Promise<void> {
|
export async function push(repo: string, out: string = __dirname): Promise<void> {
|
||||||
const git = Git(out);
|
const git = Git(out);
|
||||||
git.addRemote("fumo", repo);
|
git.addRemote("fumo", repo);
|
||||||
await git.push(["fumo", "-force"]);
|
await git.push(["fumo", "--force"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getCommitAuthors(out: string = __dirname): Promise<string[]> {
|
export async function getCommitAuthors(out: string = __dirname): Promise<string[]> {
|
||||||
|
|
Loading…
Reference in a new issue