File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 95
95
96
96
if hash npm 2> /dev/null
97
97
then
98
- # npm 5.0-5.4.0 is too buggy
98
+ # npm 5 is too buggy right now
99
99
if [ $( npm -v | head -c 1) -eq 5 ]; then
100
- npm i -g npm@^5.4.1
100
+ npm i -g npm@^4.x
101
101
fi ;
102
- npm cache clean --force || npm cache verify
102
+ npm cache clean || npm cache verify
103
103
fi
104
104
105
105
# Prevent bootstrap, we only want top-level dependencies
Original file line number Diff line number Diff line change 87
87
88
88
if hash npm 2> /dev/null
89
89
then
90
- # npm 5.0-5.4.0 is too buggy
90
+ # npm 5 is too buggy right now
91
91
if [ $( npm -v | head -c 1) -eq 5 ]; then
92
- npm i -g npm@^5.4.1
92
+ npm i -g npm@^4.x
93
93
fi ;
94
- npm cache clean --force || npm cache verify
94
+ npm cache clean || npm cache verify
95
95
fi
96
96
97
97
# Prevent bootstrap, we only want top-level dependencies
Original file line number Diff line number Diff line change 86
86
87
87
if hash npm 2> /dev/null
88
88
then
89
- # npm 5.0-5.4.0 is too buggy
89
+ # npm 5 is too buggy right now
90
90
if [ $( npm -v | head -c 1) -eq 5 ]; then
91
- npm i -g npm@^5.4.1
91
+ npm i -g npm@^4.x
92
92
fi ;
93
- npm cache clean --force || npm cache verify
93
+ npm cache clean || npm cache verify
94
94
fi
95
95
96
96
# Prevent bootstrap, we only want top-level dependencies
You can’t perform that action at this time.
0 commit comments