Skip to content

Commit

Permalink
Run the code formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
louislam committed Jul 6, 2023
1 parent 6ca7a33 commit 09913ea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/distributions/base-distribution.ts
Expand Up @@ -88,7 +88,11 @@ export default abstract class BaseDistribution {
}

protected findVersionInHostedToolCacheDirectory() {
return tc.find('node', this.nodeInfo.versionSpec, this.translateArchToDistUrl(this.nodeInfo.arch));
return tc.find(
'node',
this.nodeInfo.versionSpec,
this.translateArchToDistUrl(this.nodeInfo.arch)
);
}

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

0 comments on commit 09913ea

Please sign in to comment.