Fix assignment in macos_build_flutter_assets.sh (#32406)

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

Fixes #32341
This commit is contained in:
stuartmorgan 2019-05-09 10:16:30 -04:00 committed by GitHub
parent d96c1c88b7
commit e8c5c98132
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}"