한줄 지식

한줄로 끝나는 지식들을 잠시 모아둔다. 추후에 더 많은 내용을 알게된다면 글로도 쓸 수 있는 내용들이다.

brew가 맛이 갔을때...

나의 경우 메이븐을 설치하려고 했을때 안됐으나, 메이븐 설치만의 문제는 아니다.

$ brew install maven

Warning: No available formula with the name "maven".

여러가지 방법은 많으나 여튼 나한테 가장 효과적인 방법은 brew doctor였다.

의사쌤이 알아서 답을 알려준다. 나는 따르면 될뿐...

$ brew doctor

# ...
# ...
Warning: Some taps are not on the default git origin branch and may not receive
updates. If this is a surprise to you, check out the default branch with:
  git -C $(brew --repo homebrew/core) checkout master


$ git -C $(brew --repo homebrew/core) checkout master

brew 정상 동작 확인 완료.

Last updated