Skip to content

Commit

Permalink
fix: always declare full color support
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfbecker committed Nov 9, 2019
1 parent 88322bd commit c90a699
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ node_js: '10'
cache: yarn
env:
global:
- FORCE_COLOR=1
- FORCE_COLOR=3
install:
- yarn
jobs:
Expand Down
2 changes: 1 addition & 1 deletion src/buildkite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export async function initBuildkite({
} else {
const buildkiteYaml = {
env: {
FORCE_COLOR: 1,
FORCE_COLOR: 3,
},
steps: [
{
Expand Down
2 changes: 1 addition & 1 deletion src/travis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export async function initTravis({
node_js: '12',
cache: 'yarn',
env: {
global: ['FORCE_COLOR=1'],
global: ['FORCE_COLOR=3'],
},
install: ['yarn'],
jobs: {
Expand Down

0 comments on commit c90a699

Please sign in to comment.