Unverified Commit e8c5c981 authored by stuartmorgan's avatar stuartmorgan Committed by GitHub

Fix assignment in macos_build_flutter_assets.sh (#32406)

Bash assignment doesn't have spaces around '='.

Fixes #32341
parent d96c1c88
......@@ -40,7 +40,7 @@ if [[ -n "$TRACK_WIDGET_CREATION" ]]; then
fi
# Copy the framework and handle local engine builds.
framework_name = "FlutterMacOS.framework"
framework_name="FlutterMacOS.framework"
derived_dir="${SOURCE_ROOT}/../build/macos/Build/Products/flutter_framework"
framework_path="${FLUTTER_ROOT}/bin/cache/artifacts/engine/darwin-x64"
flutter_framework="${framework_path}/${framework_name}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment