Skip to content

Commit f8871ca

Browse files
committed
project-options: fix lint warnings
I somehow failed to spot these before integrating the changes onto the `main` branch... Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent a4fe4d8 commit f8871ca

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

lib/project-options.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,10 @@ export class ProjectOptions {
3030
cc.push("Johannes Sixt <j6t@kdbg.org>");
3131
upstreamBranch = "git-gui/master";
3232
} else if (
33-
(await revParse(`${baseCommit}:git.c`, workDir)) !== undefined
34-
|| (
35-
// gitster/git's `todo` branch, see https://github.com/git/git/pull/2209
36-
(await revParse(`${baseCommit}:README.cooking`, workDir)) !== undefined
37-
&& (await revParse(`${baseCommit}:jc.png`, workDir)) !== undefined
38-
)
33+
(await revParse(`${baseCommit}:git.c`, workDir)) !== undefined ||
34+
// gitster/git's `todo` branch, see https://github.com/git/git/pull/2209
35+
((await revParse(`${baseCommit}:README.cooking`, workDir)) !== undefined &&
36+
(await revParse(`${baseCommit}:jc.png`, workDir)) !== undefined)
3937
) {
4038
// Git
4139
to = "--to=git@vger.kernel.org";

0 commit comments

Comments
 (0)