Browse Source

build.sh: replace spaces by tabs

Karsten Böddeker 6 years ago
parent
commit
173b4b1f01
1 changed files with 6 additions and 6 deletions
  1. 6 6
      build.sh

+ 6 - 6
build.sh

@@ -78,9 +78,9 @@ fi
 [ -n "${VERBOSE}" ] || VERBOSE=0
 
 if [ -n "${VERSIONS_DIR}" ]; then
-        VERSIONS_DIR=$(readlink -f "${VERSIONS_DIR}")
+	VERSIONS_DIR=$(readlink -f "${VERSIONS_DIR}")
 else
-        VERSIONS_DIR="${DEFAULT_VERSIONS_DIR}"
+	VERSIONS_DIR="${DEFAULT_VERSIONS_DIR}"
 fi
 
 MAKE_PARAM=""
@@ -172,12 +172,12 @@ make update
 
 ### set reasonable defaults for ${TARGETS} and ${BRANCH} if unset
 if [ -z "${TARGETS}" ]; then
-        TARGETS=$(make list-targets | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
-        info "building all targets: '${TARGETS}'"
+	TARGETS=$(make list-targets | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
+	info "building all targets: '${TARGETS}'"
 fi
 if [ "${BRANCH}" == "experimental" -a -z "${VERSION}" ] ; then
-        VERSION=$(make show-release)
-        info "EXPERIMENTAL FIRMWARE: using version tag '${VERSION}'"
+	VERSION=$(make show-release)
+	info "EXPERIMENTAL FIRMWARE: using version tag '${VERSION}'"
 fi
 popd > /dev/null #${CODE_DIR}