From 5a959c948ce6d42951512a5bc564cc20f33331bd Mon Sep 17 00:00:00 2001 From: Christopher Fujino Date: Fri, 29 Oct 2021 08:44:37 -0700 Subject: [PATCH] wrap $DART_BIN invocation in double quotes to escape spaces (#92617) --- dev/conductor/bin/conductor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/conductor/bin/conductor b/dev/conductor/bin/conductor index 602d5205b3..29cb05ef74 100755 --- a/dev/conductor/bin/conductor +++ b/dev/conductor/bin/conductor @@ -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" "$@"