Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions getcov
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ source ${DIR}/envcov.sh

remove_old_report()
{
pushd ${BUILT_PRODUCTS_DIR}
pushd "${BUILT_PRODUCTS_DIR}"
if [ -e lcov ]; then
rm -r lcov
fi
Expand All @@ -19,7 +19,7 @@ remove_old_report()

enter_lcov_dir()
{
cd ${BUILT_PRODUCTS_DIR}
cd "${BUILT_PRODUCTS_DIR}"
mkdir lcov
cd lcov
}
Expand Down