We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b84949 commit bd50aa3Copy full SHA for bd50aa3
bin/hflow.js
@@ -33,7 +33,6 @@ var fs = require('fs'),
33
wflib = require('../wflib').init(rcl),
34
Engine = require('../engine2'),
35
async = require('async'),
36
- readVars = require('../utils/readvars.js'),
37
AdmZip = require('adm-zip'),
38
dbId = 0,
39
plugins = [],
@@ -45,16 +44,15 @@ var fs = require('fs'),
45
44
var hfroot = pathtool.join(require('path').dirname(require.main.filename), "..");
46
47
// Workflow variables TODO: add support for config files
48
-var wf_vars = readVars([], opts['--var']);
49
50
if (opts.run) {
51
- hflowRun(wf_vars, opts, function(err, engine) { });
+ hflowRun(opts, function(err, engine) { });
52
} else if (opts.send) {
53
hflow_send();
54
} else if (opts['start-server']) {
55
hflow_start();
56
} else if (opts.recover) {
57
58
} /*else if (opts.submit) {
59
hflowSubmit(opts);
60
}*/
0 commit comments