wrap $DART_BIN invocation in double quotes to escape spaces (#92617)

This commit is contained in:
Christopher Fujino 2021-10-29 08:44:37 -07:00 committed by GitHub
parent 78689d347c
commit 5a959c948c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,6 +38,6 @@ REPO_DIR="$BIN_DIR/../../.."
DART_BIN="$REPO_DIR/bin/dart"
# Ensure pub get has been run in the repo before running the conductor
(cd "$REPO_DIR/dev/conductor/core"; $DART_BIN pub get 1>&2)
(cd "$REPO_DIR/dev/conductor/core"; "$DART_BIN" pub get 1>&2)
"$DART_BIN" --enable-asserts "$REPO_DIR/dev/conductor/core/bin/cli.dart" "$@"