bundle update で不具合
OSX な端末にて Ubuntu で作成したプロジェクトを git clone してきて bundle update && bundle install しようとして以下なエラーが出ました。
Installing mini_portile (0.5.1) ctags: illegal option -- R usage: ctags [-BFadtuwvx] [-f tagsfile] file ... ctags: illegal option -- R usage: ctags [-BFadtuwvx] [-f tagsfile] file ...
何だこれは、と言いつつ以下のエントリを確認しつつ対処。
ctags は導入済みなので
$ brew install ctags Warning: Your Xcode (4.6.2) is outdated Please install Xcode 4.6.3. Warning: ctags-5.8 already installed
alias を作ったら
$ alias ctags="`brew --prefix`/bin/ctags"
できました。
あら?
まだ出てるな。どうしたものやら。
仕方が無いものなのかどうか。判断できぬ。と、思ったら正常終了するプロジェクトもありますね。これは一体どーゆー意味なんでしょ。