Skip to content

Commit

Permalink
Merge pull request #290 from grn/master
Browse files Browse the repository at this point in the history
Cakefile and CLI bug fixes
  • Loading branch information
jashkenas committed Jun 12, 2014
2 parents e52ba68 + d4042b2 commit 58101d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cakefile
Expand Up @@ -15,8 +15,8 @@ task 'install', 'install the `docco` command into /usr/local (or --prefix)', (op
base = options.prefix or '/usr/local'
lib = base + '/lib/docco'
exec([
'mkdir -p ' + lib
'cp -rf bin README resources lib ' + lib
'mkdir -p ' + lib + ' ' + base + '/bin'
'cp -rf bin README resources ' + lib
'ln -sf ' + lib + '/bin/docco ' + base + '/bin/docco'
].join(' && '), (err, stdout, stderr) ->
if err then console.error stderr
Expand Down
2 changes: 1 addition & 1 deletion docco.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docco.litcoffee
Expand Up @@ -225,7 +225,7 @@ user-specified options.
css: null
extension: null
languages: {}
marked: {}
marked: null
**Configure** this particular run of Docco. We might use a passed-in external
template, or one of the built-in **layouts**. We only attempt to process
Expand Down

0 comments on commit 58101d3

Please sign in to comment.