Skip to content

Commit e2d34ea

Browse files
authored
Fix armv7 cache issue (#794)
1 parent ef9c88b commit e2d34ea

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

dist/setup/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -71675,7 +71675,7 @@ class BaseDistribution {
7167571675
return version;
7167671676
}
7167771677
findVersionInHostedToolCacheDirectory() {
71678-
return tc.find('node', this.nodeInfo.versionSpec, this.nodeInfo.arch);
71678+
return tc.find('node', this.nodeInfo.versionSpec, this.translateArchToDistUrl(this.nodeInfo.arch));
7167971679
}
7168071680
getNodeJsVersions() {
7168171681
return __awaiter(this, void 0, void 0, function* () {

src/distributions/base-distribution.ts

+5-1
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.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)