Skip to content

Commit

Permalink
Merge pull request #87 from flygare/dependency_check
Browse files Browse the repository at this point in the history
Fix dirname crash
  • Loading branch information
Erik lilja authored May 10, 2017
2 parents b231b49 + 070b253 commit f7490ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion before_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ test -f "$(which docker )" || { echo "Docker not installed"; exit 1; }
test -f "$(which npm)" || { echo "NPM not installed"; exit 1; }
test -f "$(which node)" || { echo "Node not installed";
node_path=$(which nodejs)
test -f "$(which nodejs)" && echo "Please symlink $(which nodejs) to $(dirname $k)/node";
test -f "$node_path" && echo "Please symlink $node_path to $(dirname $node_path)/node";
exit 1; }
test -f "$(which md5sum )" || { echo "md5sum not installed"; exit 1; }
test -f "$(which wget )" || { echo "wget not installed"; exit 1; }
Expand Down

0 comments on commit f7490ec

Please sign in to comment.