Skip to content

Commit

Permalink
fix(git): remove deprecated silent(true)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Oct 29, 2020
1 parent b1631e6 commit 5701c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/git/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export async function initRepo(args: StorageConfig): Promise<void> {
config = { ...args } as any;
config.additionalBranches = [];
config.branchIsModified = {};
git = Git(config.localDir).silent(true);
git = Git(config.localDir);
gitInitialized = false;
await fetchBranchCommits();
}
Expand Down

0 comments on commit 5701c55

Please sign in to comment.