Skip to content

Commit

Permalink
feat(brew-bump): add check for cleanup step
Browse files Browse the repository at this point in the history
  • Loading branch information
jsjoeio committed Sep 27, 2021
1 parent f2be106 commit b590dcd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ci/steps/brew-bump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,11 @@ main() {
cd ..
rm -rf homebrew-core

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

main "$@"

0 comments on commit b590dcd

Please sign in to comment.