From f452b2dee2acfd508048ad8026e4b3ecb4641209 Mon Sep 17 00:00:00 2001 From: Guillaume Endignoux <guillaumee@google.com> Date: Thu, 6 Feb 2020 16:07:41 +0100 Subject: [PATCH] Fix Bash syntax. --- deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.sh b/deploy.sh index ca7a677..e86fcd3 100755 --- a/deploy.sh +++ b/deploy.sh @@ -160,7 +160,7 @@ comma_separated () { } build_app () { - local feature_list="$(comma_separated $@)" + local feature_list="$(comma_separated "$@")" cargo build \ --release \ --target=thumbv7em-none-eabi \ @@ -180,7 +180,7 @@ build_app () { } build_crypto_bench () { - local feature_list="$(comma_separated $@)" + local feature_list="$(comma_separated "$@")" cargo build \ --release \ --target=thumbv7em-none-eabi \ -- GitLab