diff --git a/lib/utilities.bash b/lib/utilities.bash index 93e96606..d7cf6f3f 100644 --- a/lib/utilities.bash +++ b/lib/utilities.bash @@ -44,7 +44,9 @@ _bash-it-clean-component-cache() { done else cache="$(_bash-it-component-cache-file ${component})" - [[ -f "${cache}" ]] && rm -f "${cache}" + if [[ -f "${cache}" ]] ; then + rm -f "${cache}" + fi fi }