Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewLuGit committed Dec 30, 2024
1 parent 3cef442 commit ded7bb8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/one-click/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,11 @@ export async function install(context: vscode.ExtensionContext) {
? semver.gte(semver.coerce(currentCliVersion) ?? "0.0.0", cliVersion)
: false;
const toolchainUpToDate = toolchainWorking
? semver.gte(semver.coerce(currentToolchainVersion) ?? "0.0.0", toolchainVersion, { loose: true })
? semver.gte(
semver.coerce(currentToolchainVersion) ?? "0.0.0",
toolchainVersion,
{ loose: true }
)
: false;
await prosLogger.log(
"OneClick",
Expand Down

0 comments on commit ded7bb8

Please sign in to comment.