Skip to content

Commit 5049838

Browse files
authored
Update index.ts adding export to resolveInstallDependencies
1 parent 94212d1 commit 5049838

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as core from "@actions/core";
44
import * as install from "./install";
55

66
//function resolving whether to install dependencies based on the input and runner type
7-
function resolveInstallDependencies(input: string): boolean {
7+
export function resolveInstallDependencies(input: string): boolean {
88
if (input.toLowerCase() === 'true') {
99
core.info(`install-system-dependencies explicitly set to true`);
1010
return true;

0 commit comments

Comments
 (0)