Skip to content

Commit

Permalink
fix teztz
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Dec 2, 2024
1 parent 94db506 commit 078bf65
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions examples/tooling/.lando.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,11 @@ tooling:
service: lando4
cmd: env
cols:
service: web
cmd: tput cols > cols
service: lando4
cmd: sh -c "tput cols > cols"
lines:
service: web
cmd: tput lines > lines
service: lando4
cmd: sh -c "tput lines > lines"
listfiles:
service: web
cmd: ls -lsa /app/*
Expand Down
4 changes: 2 additions & 2 deletions utils/run-tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ module.exports = async (tasks, {
}

// some sitautions just need the bare minimum
if (process?.env?.TERM === 'dumb') renderer = 'verbose';
if (process?.env?.CI && !require('is-interactive')()) renderer = 'verbose';
if (process?.env?.TERM === 'dumb') renderer = 'simple';
if (process?.env?.CI && !require('is-interactive')()) renderer = 'simple';

const defaults = {
ctx: {data: {}, errors: [], results: [], skipped: 0, ran: 0, total: 0},
Expand Down

0 comments on commit 078bf65

Please sign in to comment.