1
0
forked from mirrors/0ad

Fix issues pointed out by shellcheck

Some are real bugs, some are bashisms, but most is zealous quoting of
variables.

Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
This commit is contained in:
Ralph Sennhauser
2024-08-27 16:14:51 +02:00
committed by Stan
parent 0feeb5884a
commit 6f5ac7c4ae
14 changed files with 165 additions and 147 deletions
+4 -4
View File
@@ -18,9 +18,9 @@ for APPDIR in ../workspaces/gcc/obj/*; do
done
(
cd ../../binaries/system/
cd ../../binaries/system/ || exit 1
./test_dbg
)
) || exit 1
for APPDIR in ../workspaces/gcc/obj/*; do
lcov -d "$APPDIR" -b ../workspaces/gcc --capture -o temp.info &&
@@ -34,6 +34,6 @@ lcov -r app.info '*/third_party/*' -o app.info
rm -rf output
mkdir output
(
cd output
cd output || exit 1
genhtml ../app.info
)
) || exit 1