Skip to content

Commit f1379db

Browse files
committed
squash into main
1 parent 5fcee44 commit f1379db

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -180525,7 +180525,7 @@ function main() {
180525180525
yield (0,exec.exec)(postInstall);
180526180526
core.endGroup();
180527180527
process.chdir(workingDirectory);
180528-
cachedPath = yield tool_cache.cacheDir(esyPackagePath, esyPackageName, esyPackageVersion);
180528+
cachedPath = yield tool_cache.cacheDir(esyPackagePath, esyPackageName, esyPackageVersion, arch);
180529180529
}
180530180530
core.addPath(external_path_.join(cachedPath, "bin"));
180531180531
}

index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,8 @@ async function main() {
192192
cachedPath = await toolCache.cacheDir(
193193
esyPackagePath,
194194
esyPackageName,
195-
esyPackageVersion
195+
esyPackageVersion,
196+
arch
196197
);
197198
}
198199
core.addPath(path.join(cachedPath, "bin"));

0 commit comments

Comments
 (0)