Updated how config gets loaded

This commit is contained in:
Dunemask 2022-07-18 21:38:25 +00:00
parent 88f74a4e26
commit 338000684b
3 changed files with 7 additions and 6 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,7 @@
export default { export default function executorConfig(args){
command: (args)=>args.slice(2), return {
url: (args) => args[0], command: ()=> args.slice(2),
jobId: (args)=>args[1], url: process.env.QUALITEER_URL,
auth: (args)=>{}, jobId: () => args[1],
}
} }