From 2dc29df57b3ab9d0b774b0caea45c8c527b279a5 Mon Sep 17 00:00:00 2001 From: Aneesh Rao <66567899+sidrao2006@users.noreply.github.com> Date: Thu, 19 Nov 2020 20:31:28 +0530 Subject: [PATCH] Use FLUTTER_ROOT instead of FLUTTER_HOME --- src/installer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer.ts b/src/installer.ts index 85f9e42..5d12681 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -37,7 +37,7 @@ export async function getFlutter( toolPath = await tc.cacheDir(sdkDir, 'flutter', cleanver); } - core.exportVariable('FLUTTER_HOME', toolPath); + core.exportVariable('FLUTTER_ROOT', toolPath); core.addPath(path.join(toolPath, 'bin')); core.addPath(path.join(toolPath, 'bin', 'cache', 'dart-sdk', 'bin'));