aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2018-02-22 10:32:42 +0100
committerKarel Kočí <karel.koci@nic.cz>2018-02-22 10:35:49 +0100
commitce9114f8c93f287ea4926dd6302a5d70c8c1cc47 (patch)
tree697bc277ca57b9619345901508f46d9a9b7f43f5
parent99239c3f646c0ff9e1d9f614803bacb2cb053f57 (diff)
downloadturris-myrepo-ce9114f8c93f287ea4926dd6302a5d70c8c1cc47.tar.gz
turris-myrepo-ce9114f8c93f287ea4926dd6302a5d70c8c1cc47.tar.bz2
turris-myrepo-ce9114f8c93f287ea4926dd6302a5d70c8c1cc47.zip
Just add quotes to passed arguments
-rwxr-xr-xbuild_repo.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_repo.sh b/build_repo.sh
index c0c972a..57ef2b4 100755
--- a/build_repo.sh
+++ b/build_repo.sh
@@ -106,11 +106,11 @@ fi
if [ "$BOARD" = "omnia" ] || [ "$BOARD" = "all" ]; then
echo -e "\e[1;34mBuilding omnia\e[0m"
- (cd .omnia-sdk; make $@)
+ (cd .omnia-sdk; make "$@")
fi
if [ "$BOARD" = "turris" ] || [ "$BOARD" = "all" ]; then
echo -e "\e[1;34mBuilding turris\e[0m"
- (cd .turris-sdk; make $@)
+ (cd .turris-sdk; make "$@")
fi