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 37b053f commit 44d5b94Copy full SHA for 44d5b94
bin/hflow
@@ -148,7 +148,8 @@ function hflow_run() {
148
}
149
150
// 2. Look for secondary config files -- workflow.config.{name}.json
151
- var configFiles = glob.sync("workflow.config.*.json");
+ let globOpts = {"cwd": wfDirFull, "absolute": true};
152
+ var configFiles = glob.sync("workflow.config.*.json", globOpts);
153
configFiles.forEach(function(file) {
154
try {
155
let rawdata = fs.readFileSync(file);
0 commit comments