Skip to content

Commit 4630941

Browse files
committed
Change order parameters to make commands clearer
1 parent 633541b commit 4630941

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cleancov

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
source envcov.sh
99

10-
"${LCOV_PATH}/lcov" -d "${OBJ_DIR}" --zerocounters
10+
"${LCOV_PATH}/lcov" --zerocounters -d "${OBJ_DIR}"

getcov

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ enter_lcov_dir()
2525

2626
gather_coverage()
2727
{
28-
"${LCOV_PATH}/lcov" -b "${SRCROOT}" -d "${OBJ_DIR}" --capture -o ${LCOV_INFO}
28+
"${LCOV_PATH}/lcov" --capture -b "${SRCROOT}" -d "${OBJ_DIR}" -o ${LCOV_INFO}
2929
}
3030

3131
exclude_data()
3232
{
33-
"${LCOV_PATH}/lcov" -d "${OBJ_DIR}" --remove ${LCOV_INFO} "/Applications/Xcode.app/*" -o ${LCOV_INFO}
34-
"${LCOV_PATH}/lcov" -d "${OBJ_DIR}" --remove ${LCOV_INFO} "main.m" -o ${LCOV_INFO}
33+
"${LCOV_PATH}/lcov" --remove ${LCOV_INFO} "/Applications/Xcode.app/*" -d "${OBJ_DIR}" -o ${LCOV_INFO}
34+
"${LCOV_PATH}/lcov" --remove ${LCOV_INFO} "main.m" -d "${OBJ_DIR}" -o ${LCOV_INFO}
3535
# Remove other patterns here...
3636
}
3737

0 commit comments

Comments
 (0)