Skip to content

Commit d4740b5

Browse files
committed
Fixes missing argument in init
1 parent d64f979 commit d4740b5

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

.circleci/config.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -155,19 +155,6 @@ jobs:
155155
- *attach_workspace
156156
- *test_build
157157
- *test_run
158-
test-macos-node8:
159-
<<: *macos_defaults
160-
steps:
161-
- run:
162-
name: Install Node 8
163-
command: |
164-
brew uninstall --ignore-dependencies node
165-
HOMEBREW_NO_AUTO_UPDATE=1 brew install node@8
166-
brew link --overwrite --force node@8
167-
[[ $(node --version) =~ ^v8\. ]]
168-
- *attach_workspace
169-
- *test_build
170-
- *test_run
171158
test-e2e-ubuntu1604:
172159
<<: *docker_defaults
173160
docker:

src/cli/commands/init.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export async function run(config: Config, reporter: Reporter, flags: Object, arg
3939
[
4040
path.join(process.env.COREPACK_ROOT, 'dist/corepack.js'),
4141
`yarn@${flags.install || `stable`}`,
42+
`yarn`,
4243
`init`,
4344
...forwardedArgs,
4445
`--install=self`,

0 commit comments

Comments
 (0)