Skip to content

Commit f28702b

Browse files
committed
Fix ${BUILT_PRODUCTS_DIR} quoting
1 parent ba9d927 commit f28702b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

getcov

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ source ${DIR}/envcov.sh
1010

1111
remove_old_report()
1212
{
13-
pushd ${BUILT_PRODUCTS_DIR}
13+
pushd "${BUILT_PRODUCTS_DIR}"
1414
if [ -e lcov ]; then
1515
rm -r lcov
1616
fi
@@ -19,7 +19,7 @@ remove_old_report()
1919

2020
enter_lcov_dir()
2121
{
22-
cd ${BUILT_PRODUCTS_DIR}
22+
cd "${BUILT_PRODUCTS_DIR}"
2323
mkdir lcov
2424
cd lcov
2525
}

0 commit comments

Comments
 (0)