Skip to content

Commit b590dcd

Browse files
committed
feat(brew-bump): add check for cleanup step
1 parent f2be106 commit b590dcd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ci/steps/brew-bump.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,11 @@ main() {
101101
cd ..
102102
rm -rf homebrew-core
103103

104-
# TODO@jsjoeio - check that homebrew-core was removed
104+
# Make sure homebrew-core is removed
105+
if [[ $(directory_exists "homebrew-core") -eq 0 ]]; then
106+
echo "rm -rf homebrew-core failed."
107+
ls -la
108+
fi
105109
}
106110

107111
main "$@"

0 commit comments

Comments
 (0)