Skip to content

Commit fc813c8

Browse files
committed
More display tweaks
1 parent 2bd5c45 commit fc813c8

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ export async function install(platform: string, release: string, products: strin
2727

2828

2929
const matlabLocation = "/opt/matlab/";
30-
const key = platform + release + products.sort().join("-");
31-
console.log("Caching with key: " + key);
30+
const key = platform + release + (products.sort().join("-"));
31+
3232
let cacheKey;
3333

3434
await core.group("Retrieving MATLAB from cache if available", async () => {
35+
console.log("Cache key: " + key);
3536
cacheKey = await cache.restoreCache([matlabLocation], key);
3637
});
3738

0 commit comments

Comments
 (0)