Skip to content

Commit 0ef2d59

Browse files
committed
Cache
1 parent e324049 commit 0ef2d59

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/install.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/install.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/install.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export async function install(platform: string, release: string, products: strin
2727

2828

2929
const matlabLocation = "/opt/matlab/";
30-
const productHash = products.sort().join("-"); // TODO: Make a real hash
31-
const key = [platform, release, productHash].join("-");
30+
// TODO: Make a real hash
31+
const key = [platform, release, products.join("-")].join("-");
3232

3333
let cacheKey;
3434

0 commit comments

Comments
 (0)