Merge pull request #1311 from kylewelsby/bugfix/missing-tmp-cache-exit-1
Fixes early exit if tmp cache is missingpull/1316/head
commit
78e9c0cf6a
|
|
@ -44,7 +44,9 @@ _bash-it-clean-component-cache() {
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
cache="$(_bash-it-component-cache-file ${component})"
|
cache="$(_bash-it-component-cache-file ${component})"
|
||||||
[[ -f "${cache}" ]] && rm -f "${cache}"
|
if [[ -f "${cache}" ]] ; then
|
||||||
|
rm -f "${cache}"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue