chore(docs): get correct location for jasmine-node

This commit is contained in:
Jonathan Zacsh 2012-06-19 17:51:07 -04:00 committed by Misko Hevery
parent ca30fce28c
commit a9be003fce

View file

@ -1,10 +1,9 @@
#!/usr/bin/env bash
JASMINE_NODE='jasmine-node'
if ! type -p "$JASMINE_NODE" >/dev/null 2>&1;then
# Locally (npm)-installed jasmine-node
local_jasmine='./node_modules/.bin/jasmine-node'
local_jasmine='./node_modules/.bin/jasmine-node'
if ! type -p "$JASMINE_NODE" >/dev/null 2>&1;then
if [[ -x "$local_jasmine" ]];then
JASMINE_NODE="$local_jasmine"
else