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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user