Unverified Commit 5a959c94 authored by Christopher Fujino's avatar Christopher Fujino Committed by GitHub

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

parent 78689d34
...@@ -38,6 +38,6 @@ REPO_DIR="$BIN_DIR/../../.." ...@@ -38,6 +38,6 @@ REPO_DIR="$BIN_DIR/../../.."
DART_BIN="$REPO_DIR/bin/dart" DART_BIN="$REPO_DIR/bin/dart"
# Ensure pub get has been run in the repo before running the conductor # 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" "$@" "$DART_BIN" --enable-asserts "$REPO_DIR/dev/conductor/core/bin/cli.dart" "$@"
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