Fix Bash syntax.

This commit is contained in:
Guillaume Endignoux
2020-02-06 16:07:41 +01:00
parent cab6f0c139
commit f452b2dee2

View File

@@ -160,7 +160,7 @@ comma_separated () {
} }
build_app () { build_app () {
local feature_list="$(comma_separated $@)" local feature_list="$(comma_separated "$@")"
cargo build \ cargo build \
--release \ --release \
--target=thumbv7em-none-eabi \ --target=thumbv7em-none-eabi \
@@ -180,7 +180,7 @@ build_app () {
} }
build_crypto_bench () { build_crypto_bench () {
local feature_list="$(comma_separated $@)" local feature_list="$(comma_separated "$@")"
cargo build \ cargo build \
--release \ --release \
--target=thumbv7em-none-eabi \ --target=thumbv7em-none-eabi \