#!/usr/bin/env bash ### Test truffle integration mkdir test_truffle cd test_truffle curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash source ~/.nvm/nvm.sh nvm install --lts nvm use --lts npm install -g truffle truffle unbox metacoin slither . if [ $? -eq 7 ] then exit 0 fi echo "Truffle test failed" exit -1