aboutsummaryrefslogtreecommitdiffstats
path: root/build_all.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build_all.sh')
-rwxr-xr-xbuild_all.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/build_all.sh b/build_all.sh
index 502347a..9ff69c6 100755
--- a/build_all.sh
+++ b/build_all.sh
@@ -84,7 +84,7 @@ if [ ! -e "${CONFIG_FILE}" ]; then
exit ${CONFIG_FILE_NOT_FOUND}
fi
-
+
# If SBCs is not defined in the config file, take ALL board in the platforms directory.
SBCs="$(cat ${CONFIG_FILE} | jq -c ".SBCs[]")"
if [ 0 -ne "${?}" ]; then
@@ -104,13 +104,13 @@ destdir="$(cat ${CONFIG_FILE} | jq -c ".destdir")"
for SBC_config in ${SBCs}; do
SBC="$(echo ${SBC_config} | jq -r '.board')"
DESKTOP_STEP="$(echo ${SBC_config} | jq '.desktop')"
- if [ "null" != "${DESKTOP_STEP}" ]; then
+ if [ "null" != "${DESKTOP_STEP}" ]; then
DESKTOP="--desktop $(echo ${SBC_config} | jq '.desktop')"
else
unset DESKTOP
fi
NONFREE_STEP="$(echo ${SBC_config} | jq '.nonfree')"
- if [ "true" = "${NONFREE_STEP}" ]; then
+ if [ "true" = "${NONFREE_STEP}" ]; then
NONFREE="--nonfree"
else
unset NONFREE