From 80b54549f82fc2c7672eedaa492bef2309bbc52f Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Fri, 4 Aug 2023 13:37:53 -0500 Subject: [PATCH] fix(shorebird_cli): windows install flutter path (#1031) --- bin/shorebird.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/shorebird.ps1 b/bin/shorebird.ps1 index a51b3ff8..bc8b363e 100644 --- a/bin/shorebird.ps1 +++ b/bin/shorebird.ps1 @@ -10,7 +10,7 @@ $shorebirdCliDir = [IO.Path]::Combine($shorebirdRootDir, "packages", "shorebird_ $snapshotPath = [IO.Path]::Combine($shorebirdCacheDir, "shorebird.snapshot") $stampPath = [IO.Path]::Combine($shorebirdCacheDir, "shorebird.stamp") $flutterPath = [IO.Path]::Combine($shorebirdCacheDir, "flutter", $flutterVersion) -$flutter = [IO.Path]::Combine($shorebirdCacheDir, "flutter", "bin", "flutter.bat") +$flutter = [IO.Path]::Combine($shorebirdCacheDir, "flutter", $flutterVersion, "bin", "flutter.bat") $shorebirdScript = [IO.Path]::Combine($shorebirdCliDir, "bin", "shorebird.dart") $dart = [IO.Path]::Combine($flutterPath, "bin", "cache", "dart-sdk", "bin", "dart.exe")