mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
Added node-modules
This commit is contained in:
14
node_modules/supervisor/lib/cli-wrapper.js
generated
vendored
Executable file
14
node_modules/supervisor/lib/cli-wrapper.js
generated
vendored
Executable file
@ -0,0 +1,14 @@
|
||||
#!/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)
|
Reference in New Issue
Block a user