Skip to content
This repository was archived by the owner on Jul 10, 2021. It is now read-only.

Commit e09ae68

Browse files
committed
fixes analyze args not used bug
1 parent 0cb1cce commit e09ae68

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tasks/analyze/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ async function main(): Promise<void> {
1919
}
2020
task.debug(`Project's directory : ${task.cwd()}`);
2121

22+
// get args
23+
let pubGetArg = task.getBoolInput('pubGet', false);
24+
2225
// 3. Get common input
23-
let pubGet = task.getBoolInput('pubGet', false);
26+
let pubGet = task.getBoolInput('pubGet', pubGetArg);
2427

2528
// 4. Builds
2629
await runAnalyze(flutterPath, pubGet);

0 commit comments

Comments
 (0)