Skip to content

Commit

Permalink
Created subdir for utils.
Browse files Browse the repository at this point in the history
  • Loading branch information
mde committed Mar 2, 2012
1 parent 0c0dc81 commit 82e077a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bin/cli.js
Expand Up @@ -20,12 +20,12 @@
var args = process.argv.slice(2)
, libPath = __dirname + '/../lib'
, fs = require('fs')
, jake = require(libPath + '/jake.js')
, api = require(libPath + '/api.js')
, utils = require(libPath + '/utils.js')
, Program = require(libPath + '/program.js').Program
, jake = require(libPath + '/jake')
, api = require(libPath + '/api')
, utils = require(libPath + '/utils')
, Program = require(libPath + '/program').Program
, program = new Program()
, Loader = require(libPath + '/loader.js').Loader
, Loader = require(libPath + '/loader').Loader
, loader = new Loader()
, pkg = JSON.parse(fs.readFileSync(__dirname + '/../package.json').toString())
, opts
Expand Down
File renamed without changes.

0 comments on commit 82e077a

Please sign in to comment.