Skip to content

Commit

Permalink
fixed code-style checks issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lgmyrek committed Mar 4, 2024
1 parent f3726be commit e0b735b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/coursier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export async function install(): Promise<void> {
export async function launch(
app: string,
arguments_: Array<string | string[]> = [],
extraJars: NonEmptyString | undefined,
extraJars: NonEmptyString | undefined = undefined,
): Promise<void> {
core.startGroup(`Launching ${app}`)

Expand All @@ -80,7 +80,7 @@ export async function launch(
'-r',
'sonatype:snapshots',
app,
...(extraJars ? ['--extra-jars', extraJars.value] : []),
...(extraJars ? ['--extra-jars', extraJars.value] : []),
'--',
...arguments_.flatMap((argument: string | string[]) => (typeof argument === 'string' ? [argument] : argument)),
]
Expand Down

0 comments on commit e0b735b

Please sign in to comment.