[Fix #635] Use $BROWSER to open node documentation

This commit is contained in:
Sorin Ionescu 2014-10-06 18:02:45 -04:00
parent 62198b0326
commit c4b50ec1a0
1 changed files with 7 additions and 2 deletions

View File

@ -5,6 +5,11 @@
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# TODO: Make the sections easier to use.
open "http://nodejs.org/docs/$(node --version | sed 's/-.*//')/api/all.html#${1}"
if [[ -z "$BROWSER" ]]; then
print "$0: no web browser defined" >&2
return 1
fi
# TODO: Make the sections easier to use.
"$BROWSER" "http://nodejs.org/docs/$(node --version | sed 's/-.*//')/api/all.html#${1}"