Repository URL to install this package:
|
Version:
0.9.1 ▾
|
#!/usr/bin/env node
var path = require("path")
, fs = require("fs")
, args = process.argv.slice(1)
var arg, base;
do arg = args.shift();
while ( fs.realpathSync(arg) !== __filename
&& (base = path.basename(arg)) !== "node-supervisor"
&& base !== "supervisor"
&& base !== "supervisor.js"
)
require("./supervisor").run(args)