summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorLevi Lewis <levilewis@fit.edu>2014-04-07 13:11:44 -0400
committerLevi Lewis <levilewis@fit.edu>2014-04-07 13:11:44 -0400
commit7fe189907ecdaf0625ab21db25b19a643d741f73 (patch)
tree900a1147459470e22b33a75a081ea5c48964cb8c /bin
parent9d541a0a4dcab738591375477c908534e9d25974 (diff)
downloadgitbook-7fe189907ecdaf0625ab21db25b19a643d741f73.zip
gitbook-7fe189907ecdaf0625ab21db25b19a643d741f73.tar.gz
gitbook-7fe189907ecdaf0625ab21db25b19a643d741f73.tar.bz2
Fixes --githubHost option for use with Github Enterprise.
Diffstat (limited to 'bin')
-rw-r--r--bin/build.js1
-rwxr-xr-xbin/gitbook.js2
2 files changed, 2 insertions, 1 deletions
diff --git a/bin/build.js b/bin/build.js
index 6050b88..4f7429a 100644
--- a/bin/build.js
+++ b/bin/build.js
@@ -42,6 +42,7 @@ var buildFunc = function(dir, options) {
title: title,
description: options.intro,
github: githubID,
+ githubHost: options.githubHost,
generator: options.format,
theme: options.theme
})
diff --git a/bin/gitbook.js b/bin/gitbook.js
index ab6e043..4ffa6cf 100755
--- a/bin/gitbook.js
+++ b/bin/gitbook.js
@@ -23,7 +23,7 @@ var buildCommand = function(command, action) {
.option('-t, --title <name>', 'Name of the book to generate, defaults to repo name')
.option('-i, --intro <intro>', 'Description of the book to generate')
.option('-g, --github <repo_path>', 'ID of github repo like : username/repo')
- .option('-gh, --githubHost <url>', 'The url of the github host (defaults to https://github.com/')
+ .option('--githubHost <url>', 'The url of the github host (defaults to https://github.com/')
.option('--theme <path>', 'Path to theme directory')
.action(action);
}