MacOs 업그레이드 후 git 코드가 작동이 되지 않는다.
git
# xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
make
# xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
gcc
# xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
이는 각 도구들의 문제가 아닌 CommendLineTools를 식별하지 못해 발생하는 문제이다.
xcode-select --install
명령어를 터미널에 입력해 CommandLineTools(command line developer tools)를 설치 후 실행해보면 툴이 정상적으로 동작한다.