Skip to content

Commit

Permalink
Fixes missing argument in init
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanis committed Jul 5, 2021
1 parent d64f979 commit d4740b5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
13 changes: 0 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,19 +155,6 @@ jobs:
- *attach_workspace
- *test_build
- *test_run
test-macos-node8:
<<: *macos_defaults
steps:
- run:
name: Install Node 8
command: |
brew uninstall --ignore-dependencies node
HOMEBREW_NO_AUTO_UPDATE=1 brew install node@8
brew link --overwrite --force node@8
[[ $(node --version) =~ ^v8\. ]]
- *attach_workspace
- *test_build
- *test_run
test-e2e-ubuntu1604:
<<: *docker_defaults
docker:
Expand Down
1 change: 1 addition & 0 deletions src/cli/commands/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export async function run(config: Config, reporter: Reporter, flags: Object, arg
[
path.join(process.env.COREPACK_ROOT, 'dist/corepack.js'),
`yarn@${flags.install || `stable`}`,
`yarn`,
`init`,
...forwardedArgs,
`--install=self`,
Expand Down

0 comments on commit d4740b5

Please sign in to comment.