#!/usr/bin/env bash # We use ${BASH_SOURCE[0]} instead of $0 to allow sourcing this file # and we fall back to a Zsh-specific special var to also support Zsh. REL_PATH="$(dirname ${BASH_SOURCE[0]:-${(%):-%x}})" ABS_PATH="$(cd ${REL_PATH}; pwd)" # Activate nvm only when this file is sourced without arguments: if [ -z "$*" ]; then if ! command -v ganache-cli > /dev/null; then if command -v nvm > /dev/null; then nvm use npm install -g ganache-cli else echo <