Updated how config gets loaded
This commit is contained in:
parent
88f74a4e26
commit
338000684b
3 changed files with 7 additions and 6 deletions
BIN
bin/executor
BIN
bin/executor
Binary file not shown.
2
dist/bundles/qualiteer-executor.mjs
vendored
2
dist/bundles/qualiteer-executor.mjs
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,7 @@
|
|||
export default {
|
||||
command: (args)=>args.slice(2),
|
||||
url: (args) => args[0],
|
||||
jobId: (args)=>args[1],
|
||||
auth: (args)=>{},
|
||||
export default function executorConfig(args){
|
||||
return {
|
||||
command: ()=> args.slice(2),
|
||||
url: process.env.QUALITEER_URL,
|
||||
jobId: () => args[1],
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue