Skip to content

Commit

Permalink
fix(misc): nx view-logs should open the nx-cloud link when connected …
Browse files Browse the repository at this point in the history
…to cloud
  • Loading branch information
FrozenPandaz committed Jun 26, 2023
1 parent ae698a7 commit bc63c5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nx/src/command-line/connect/view-logs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { runNxSync } from '../../utils/child-process';

export async function viewLogs(): Promise<number> {
const pmc = getPackageManagerCommand();
const cloudUsed = isNxCloudUsed() && false;
const cloudUsed = isNxCloudUsed();
if (!cloudUsed) {
const installCloud = await (
await import('enquirer')
Expand Down

0 comments on commit bc63c5c

Please sign in to comment.