Skip to content
Snippets Groups Projects
Commit f452b2de authored by Guillaume Endignoux's avatar Guillaume Endignoux
Browse files

Fix Bash syntax.

parent cab6f0c1
No related branches found
No related tags found
No related merge requests found
......@@ -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 \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment