mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
245 B
11 lines
245 B
13 years ago
|
module.exports = substack
|
||
|
var npm = require("./npm.js")
|
||
|
, log = require("./utils/log.js")
|
||
|
|
||
|
function substack (args, cb) {
|
||
|
console.log("\033[32mbeep \033[35mboop\033[m")
|
||
|
var c = args.shift()
|
||
|
if (c) npm.commands[c](args, cb)
|
||
|
else cb()
|
||
|
}
|