From 884015b70837a9727eb4e3255eea08cabc50a04f Mon Sep 17 00:00:00 2001 From: Justin Yun Date: Thu, 29 Jun 2023 21:55:12 +0900 Subject: [PATCH] STT: fix build error for the ninja explain argument The command must be in quotations. Use eval to run commands. Bug: 284915566 Test: combined_build_test.sh -t cf_x86_64_phone -v userdebug \ -d out/dist -a cf_x86_64_foldable -o -c droid Change-Id: I41881527434a05736224de502ff6b09dcc45a55c --- treble/combined_build_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/treble/combined_build_test.sh b/treble/combined_build_test.sh index f6e87c278..f051b5dc7 100755 --- a/treble/combined_build_test.sh +++ b/treble/combined_build_test.sh @@ -86,7 +86,7 @@ fi run_command() { echo "Running: ${1}" if [[ -z "${dry_run}" ]]; then - $1 + eval "${1}" fi }