Skip to content

Commit

Permalink
fixed docpack utility output dir: out -> build
Browse files Browse the repository at this point in the history
  • Loading branch information
agnat committed Nov 15, 2012
1 parent 4f94f6f commit 92ad7c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/docpack
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var path = require('path')


var rootd = path.resolve(path.dirname(process.argv[1]), '..') var rootd = path.resolve(path.dirname(process.argv[1]), '..')
, docd = rootd + '/doc' , docd = rootd + '/doc'
, outd = rootd + '/out/pages' , outd = rootd + '/build/pages'
, package = JSON.parse(fs.readFileSync(rootd + '/package.json')) , package = JSON.parse(fs.readFileSync(rootd + '/package.json'))
, layout = fs.readFileSync(docd + '/layout.ejs').toString() , layout = fs.readFileSync(docd + '/layout.ejs').toString()
; ;
Expand Down

0 comments on commit 92ad7c8

Please sign in to comment.