Ionicでiosのためのビルドした。
ionic cordova build ios
をしてみるとエラーになった。
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
コマンドラインツールはあるし、
$ xcode-select -p /Applications/Xcode.app/Contents/Developer
設定してなければこれをする。
sudo xcode-select -switch /Library/Developer/CommandLineTools
https://github.com/nodejs/node-gyp/issues/569
you can always do a xcode-select -r if you already have command line tools or Xcode already installed.
って書いてたので、
xcode-select -r
してみた。 行けた!!