Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 09913ea

Browse files
committed
Run the code formatter
1 parent 6ca7a33 commit 09913ea

File tree

1 file changed

+5
-1
lines changed
  • src/distributions
    • base-distribution.ts

1 file changed

+5
-1
lines changed

src/distributions/base-distribution.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,11 @@ export default abstract class BaseDistribution {
8888
}
8989

9090
protected findVersionInHostedToolCacheDirectory() {
91-
return tc.find('node', this.nodeInfo.versionSpec, this.translateArchToDistUrl(this.nodeInfo.arch));
91+
return tc.find(
92+
'node',
93+
this.nodeInfo.versionSpec,
94+
this.translateArchToDistUrl(this.nodeInfo.arch)
95+
);
9296
}
9397

9498
protected async getNodeJsVersions(): Promise<INodeVersion[]> {

0 commit comments

Comments
(0)