From bb9f3dcc30f7e1364b6526c831975ffcb668dfaf Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Fri, 30 Aug 2024 12:04:05 -0500 Subject: [PATCH] fix(shorebird_cli): `aot_tools` path when using local engine (#2457) --- packages/shorebird_cli/lib/src/shorebird_artifacts.dart | 1 + packages/shorebird_cli/test/src/shorebird_artifacts_test.dart | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/shorebird_cli/lib/src/shorebird_artifacts.dart b/packages/shorebird_cli/lib/src/shorebird_artifacts.dart index 220fa9e0..23f702a1 100644 --- a/packages/shorebird_cli/lib/src/shorebird_artifacts.dart +++ b/packages/shorebird_cli/lib/src/shorebird_artifacts.dart @@ -145,6 +145,7 @@ class ShorebirdLocalEngineArtifacts implements ShorebirdArtifacts { return File( p.join( engineConfig.localEngineSrcPath!, + 'flutter', 'third_party', 'dart', 'pkg', diff --git a/packages/shorebird_cli/test/src/shorebird_artifacts_test.dart b/packages/shorebird_cli/test/src/shorebird_artifacts_test.dart index 8b4e03ba..a31b19f2 100644 --- a/packages/shorebird_cli/test/src/shorebird_artifacts_test.dart +++ b/packages/shorebird_cli/test/src/shorebird_artifacts_test.dart @@ -188,6 +188,7 @@ void main() { equals( p.join( localEngineSrcPath, + 'flutter', 'third_party', 'dart', 'pkg',