Skip to content

Commit 1c1ddd2

Browse files
committed
Merge pull request #26 from 0xced/fix-built-products-dir-quoting
Fix ${BUILT_PRODUCTS_DIR} quoting
2 parents ba9d927 + f28702b commit 1c1ddd2

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)