Skip to content

Commit 8940a79

Browse files
committed
Use quiet flag for fetch
1 parent 5767a47 commit 8940a79

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/git.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,7 @@ const hasCleanIndex = (filePath: string): boolean => {
7272
};
7373

7474
const fetchFromOrigin = (branch: string) => {
75-
const args = [
76-
"fetch",
77-
// "--quiet", // TODO: Uncomment this flag when testing is done
78-
"origin",
79-
branch,
80-
];
75+
const args = ["fetch", "--quiet", "origin", branch];
8176

8277
child_process.execFileSync(COMMAND, args, OPTIONS);
8378
};

0 commit comments

Comments
 (0)