Skip to content

Commit

Permalink
tweak examples (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
k15a authored and SamVerschueren committed Jun 27, 2017
1 parent 310415b commit 3902cc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readme.md
Expand Up @@ -47,7 +47,7 @@ const tasks = new Listr([
title: 'Install package dependencies with Yarn',
task: (ctx, task) => execa('yarn')
.catch(() => {
ctx.yarn === false;
ctx.yarn = false;

task.skip('Yarn not available, install it via `npm install -g yarn`');
})
Expand Down Expand Up @@ -194,7 +194,7 @@ const tasks = new Listr([
title: 'Install package dependencies with Yarn',
task: (ctx, task) => execa('yarn')
.catch(() => {
ctx.yarn === false;
ctx.yarn = false;

task.skip('Yarn not available, install it via `npm install -g yarn`');
})
Expand Down

0 comments on commit 3902cc0

Please sign in to comment.