Skip to content

Commit 7d8583f

Browse files
committed
Fix an eslint warning
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 4bfd75d commit 7d8583f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/installer.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,10 @@ async function acquireOpamDarwin(version: string, customRepository: string) {
9292
await exec("opam", ["install", "-y", "depext"]);
9393
}
9494

95-
export async function getOpam(version: string, repository: string) {
95+
export async function getOpam(
96+
version: string,
97+
repository: string
98+
): Promise<void> {
9699
core.exportVariable("OPAMYES", "1");
97100
if (osPlat === "win32") return acquireOpamWindows(version, repository);
98101
else if (osPlat === "darwin") return acquireOpamDarwin(version, repository);

0 commit comments

Comments
 (0)