From f28702b147f9c5be8827e5e8c41037c4ce4b969d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ce=CC=81dric=20Luthi?= Date: Wed, 10 Sep 2014 18:01:10 +0200 Subject: [PATCH] Fix ${BUILT_PRODUCTS_DIR} quoting --- getcov | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getcov b/getcov index 53b3d78..091ca02 100755 --- a/getcov +++ b/getcov @@ -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 @@ -19,7 +19,7 @@ remove_old_report() enter_lcov_dir() { - cd ${BUILT_PRODUCTS_DIR} + cd "${BUILT_PRODUCTS_DIR}" mkdir lcov cd lcov }