From 6ebddd1b83546f2e772a85b5820a3cbe3455e948 Mon Sep 17 00:00:00 2001 From: Tianhao Zhou Date: Sat, 11 Apr 2020 18:23:34 -0700 Subject: [PATCH] fix: add the missing bin directory in dart sdk --- src/installer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer.ts b/src/installer.ts index 21bf979..dea3e3c 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -62,7 +62,7 @@ export async function getFlutter( core.exportVariable('FLUTTER_HOME', toolPath); core.addPath(path.join(toolPath, 'bin')); - core.addPath(path.join(toolPath, 'bin/cache/dart-sdk')); + core.addPath(path.join(toolPath, 'bin/cache/dart-sdk/bin')); } function osName(): string {