Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion bin/tcfeed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2208,7 +2208,10 @@ async function checkCommand(argv: string[]): Promise<number> {
}
}

if (!fix) {
// Only for the read-only pass. --refresh writes, so telling its operator
// nothing was changed is false — it said so at the end of a run that had
// just pushed a commit to forty-four repositories.
if (!fix && !refresh) {
console.log('');
console.log('Nothing was changed. `tcfeed check --fix` acts on the failures marked ours;');
console.log('failures marked theirs are never touched, whatever --fix says.');
Expand Down
Loading