Skip to content

Commit

Permalink
fix: running task would print undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
10ko authored and edvald committed Sep 3, 2019
1 parent 62221a2 commit 729e8cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion garden-service/src/commands/run/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ export class RunTaskCommand extends Command<Args, Opts> {

if (!result.error) {
log.info("")
log.info(chalk.white(result.output.output))
// TODO: The command will need to be updated to stream logs: see https://github.com/garden-io/garden/issues/630.
// It's ok with the current providers but the shape might change in the future.
log.info(chalk.white(result.output.outputs.log))
printFooter(footerLog)
}

Expand Down

0 comments on commit 729e8cd

Please sign in to comment.