timakin.log

╭( ・ㅂ・)و ̑̑

bower installでlogでるのにbower_componentsが作成されないバグ

## 概要

bower installすると、.bowerrcやbower.jsonの設定もbower自体も特に問題ないのにbower_componentsが作成されませんでした。
bower installも

bower angular#>=1.2.*       not-cached git://github.com/angular/bower-angular.git#>=1.2.*
bower angular#>=1.2.*          resolve git://github.com/angular/bower-angular.git#>=1.2.*
bower json3#~3.3.1          not-cached git://github.com/bestiejs/json3.git#~3.3.1
bower json3#~3.3.1             resolve git://github.com/bestiejs/json3.git#~3.3.1
bower es5-shim#~3.0.1       not-cached git://github.com/es-shims/es5-shim.git#~3.0.1
bower es5-shim#~3.0.1          resolve git://github.com/es-shims/es5-shim.git#~3.0.1
bower jquery#~1.11.0        not-cached git://github.com/jquery/jquery.git#~1.11.0
bower jquery#~1.11.0           resolve git://github.com/jquery/jquery.git#~1.11.0
bower bootstrap#~3.1.1      not-cached git://github.com/twbs/bootstrap.git#~3.1.1
bower bootstrap#~3.1.1         resolve git://github.com/twbs/bootstrap.git#~3.1.1
bower angular-resource#>=1.2.*       not-cached git://github.com/angular/bower-angular-resource.git#>=1.2.*
bower angular-resource#>=1.2.*          resolve git://github.com/angular/bower-angular-resource.git#>=1.2.*
bower bootstrap-sass-official#~3.1.1 not-cached git://github.com/twbs/bootstrap-sass.git#~3.1.1
bower bootstrap-sass-official#~3.1.1    resolve git://github.com/twbs/bootstrap-sass.git#~3.1.1
bower angular-cookies#>=1.2.*        not-cached git://github.com/angular/bower-angular-cookies.git#>=1.2.*
bower angular-cookies#>=1.2.*           resolve git://github.com/angular/bower-angular-cookies.git#>=1.2.*
bower angular-sanitize#>=1.2.*       not-cached git://github.com/angular/bower-angular-sanitize.git#>=1.2.*
bower angular-sanitize#>=1.2.*          resolve git://github.com/angular/bower-angular-sanitize.git#>=1.2.*
bower angular-bootstrap#~0.11.0      not-cached git://github.com/angular-ui/bootstrap-bower.git#~0.11.0
bower angular-bootstrap#~0.11.0         resolve git://github.com/angular-ui/bootstrap-bower.git#~0.11.0

みたいに表示されるけれど、logだけで結局git checkoutできてない。
ローカルではできたのに。

## 原因

nodeのバージョンがローカルと異なっていた。
nodeのバージョンが0.10.0以上でないといけないのだが、0.8.5だったためbowerがうまく動いていなかった。

$ sudo npm cache clean -f
$ sudo npm install -g n
$ sudo n stable
$ node -v

で治る。