Skip to content

[macos] Fix script handling of spaces in paths #200

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/build_flutter_assets
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ readonly flutter_binary="$flutter_dir/bin/flutter"
#readonly build_type=host_debug_unopt
#readonly extra_flags=(--local-engine-src-path $engine_src_path --local-engine=$build_type)

cd $1
cd "$1"
echo Running "$flutter_binary" ${extra_flags[*]} build bundle
exec "$flutter_binary" ${extra_flags[*]} build bundle
2 changes: 1 addition & 1 deletion tools/update_flutter_engine
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ readonly dart_bin_dir="$flutter_bin_dir/cache/dart-sdk/bin"
if [[ ! -e $dart_bin_dir ]]; then
"$flutter_bin_dir/flutter" precache
fi
exec "$dart_bin_dir/dart" "$base_dir/dart_tools/bin/update_flutter_engine.dart" $@
exec "$dart_bin_dir/dart" "$base_dir/dart_tools/bin/update_flutter_engine.dart" "$@"