Skip to content

Commit c025bcd

Browse files
committed
fix: formatting
1 parent de7c18c commit c025bcd

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/commands/push.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ export function registerPushCommand(program: Command, getCtx: () => ArbContext):
8080
const headStr = a.headSha ? ` ${dim(`(HEAD ${a.headSha})`)}` : "";
8181
if (a.outcome === "will-push") {
8282
const newBranchSuffix = a.recreate ? " (recreate)" : a.newBranch ? " (new branch)" : "";
83-
process.stderr.write(` ${a.repo} ${plural(a.ahead, "commit")} to push${newBranchSuffix}${forkSuffix}${headStr}\n`);
83+
process.stderr.write(
84+
` ${a.repo} ${plural(a.ahead, "commit")} to push${newBranchSuffix}${forkSuffix}${headStr}\n`,
85+
);
8486
} else if (a.outcome === "will-force-push") {
8587
process.stderr.write(
8688
` ${a.repo} ${plural(a.ahead, "commit")} to push (force — ${a.behind} behind ${a.publishRemote})${headStr}\n`,

0 commit comments

Comments
 (0)