fix(travis): require v0.12 as passing

This commit is contained in:
Sean Larkin 2016-10-27 11:55:47 -05:00
parent 481dff04f1
commit a7c51cad5f
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
set -ev
if [ "$TRAVIS_NODE_VERSIONNODEV":0:1 == "v0.12.17" ];
if [ "$TRAVIS_NODE_VERSION" == "v0.12.17" ];
then npm install && npm link && npm link webpack;
else npm install yarn -g && yarn install && yarn link || true && yarn link webpack;
fi