Add support for npm 2
This commit is contained in:
parent
e34a4ea4ee
commit
94968e69be
|
@ -36,8 +36,9 @@ hash npm > /dev/null 2>&1 || {
|
||||||
|
|
||||||
#check npm version
|
#check npm version
|
||||||
NPM_VERSION=$(npm --version)
|
NPM_VERSION=$(npm --version)
|
||||||
if [ ! $(echo $NPM_VERSION | cut -d "." -f 1) = "1" ]; then
|
NPM_MAIN_VERSION=$(echo $NPM_VERSION | cut -d "." -f 1)
|
||||||
echo "You're running a wrong version of npm, you're using $NPM_VERSION, we need 1.x" >&2
|
if [ $(echo $NPM_MAIN_VERSION) = "0" ]; then
|
||||||
|
echo "You're running a wrong version of npm, you're using $NPM_VERSION, we need 1.x or higher" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue