Skip to content

Commit d6fadce

Browse files
committed
review comments
1 parent fa9244d commit d6fadce

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/cache-save.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 The MathWorks, Inc.
1+
// Copyright 2023-2024 The MathWorks, Inc.
22

33
import * as core from '@actions/core';
44
import * as cache from '@actions/cache';

src/script.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-2023 The MathWorks, Inc.
1+
// Copyright 2020-2024 The MathWorks, Inc.
22

33
import * as exec from "@actions/exec";
44
import * as io from "@actions/io";
@@ -21,7 +21,7 @@ export async function downloadAndRunScript(platform: string, url: string, args?:
2121
if (exitCode !== 0) {
2222
return Promise.reject(Error(`Script exited with non-zero code ${exitCode}`));
2323
}
24-
return
24+
return;
2525
}
2626

2727
/**

src/script.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-2023 The MathWorks, Inc.
1+
// Copyright 2020-2024 The MathWorks, Inc.
22

33
import * as exec from "@actions/exec";
44
import * as io from "@actions/io";

0 commit comments

Comments
 (0)