automated: linux: modules: fix indentation
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
diff --git a/automated/linux/modules/modules.sh b/automated/linux/modules/modules.sh
index adabf88..66fc192 100755
--- a/automated/linux/modules/modules.sh
+++ b/automated/linux/modules/modules.sh
@@ -41,15 +41,15 @@
for subdir in ${MODULES_SUBDIRS}; do
find /lib/modules/"$(uname -r)"/kernel/"${subdir}" -type f -name '*.ko*' | tee -a /tmp/find_modules.txt
done
- split --verbose --numeric-suffixes=1 -n l/"${SHARD_INDEX}"/"${SHARD_NUMBER}" /tmp/find_modules.txt > /tmp/shardfile
- echo "============== Tests to run ==============="
- cat /tmp/shardfile
- echo "===========End Tests to run ==============="
- if [ -s /tmp/shardfile ]; then
- report_pass "shardfile"
- else
- report_fail "shardfile"
- fi
+ split --verbose --numeric-suffixes=1 -n l/"${SHARD_INDEX}"/"${SHARD_NUMBER}" /tmp/find_modules.txt > /tmp/shardfile
+ echo "============== Tests to run ==============="
+ cat /tmp/shardfile
+ echo "===========End Tests to run ==============="
+ if [ -s /tmp/shardfile ]; then
+ report_pass "shardfile"
+ else
+ report_fail "shardfile"
+ fi
while IFS= read -r line
do
module_basename=$(basename "${line}")