Skip to content

Commit

Permalink
chore: fix log output in tsm builds
Browse files Browse the repository at this point in the history
  • Loading branch information
karl-run committed May 15, 2024
1 parent b72dc3b commit 31be86c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/actions/builds/builds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ const reposQuery = /* GraphQL */ `

export async function checkBuilds(rerunFailed: boolean): Promise<void> {
const team = await getTeam()
log(chalk.green(`Checking build status for all ${team} repos... ${rerunFailed && '(will rerun failed)'} \t`))
log(
chalk.green(
`Checking build status for all ${team} repos... ${rerunFailed ? '(will rerun failed)' : undefined} \t`,
),
)

const queryResult = await ghGqlQuery<OrgTeamRepoResult<BranchRefNode>>(reposQuery, {
team,
Expand Down

0 comments on commit 31be86c

Please sign in to comment.