cli: fix execute

This commit is contained in:
Thomas Hobson 2021-03-13 19:49:05 +13:00
parent 5a05537a7f
commit 5e400cb782
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ exports.handler = async function(argv){
};
let response = await argv.axios.post('/jobs', request);
response = response.data
response = response.data.data
function step(name, ctx){
console.log(chalk.bold(`== ${name} ==`))