Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
Using local yarn instance instead (#4093)
Browse files Browse the repository at this point in the history
* Using local yarn instance instead

* Improves git submodule command on first run (empty submodules folders) and corresponding docs
  • Loading branch information
evertonfraga committed Sep 17, 2018
1 parent 403f35f commit 67197a5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ Now you're ready to initialize Mist for development:
```bash
$ git clone https://github.com/ethereum/mist.git
$ cd mist
$ git submodule update --init --recursive
$ yarn
```

Expand Down
2 changes: 0 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ install:
# installs global dependencies
- choco install meteor
- choco install nsis
# prevents node 10 to be installed, as it's a dependency of yarn
- choco install yarn --ignore-dependencies

- refreshenv
- ps: refreshenv
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"scripts": {
"precommit": "pretty-quick --staged",
"postinstall": "git submodule update --recursive && yarn task pack-wallet && (cd interface && yarn)",
"postinstall": "git submodule update --init --recursive && yarn task pack-wallet && (cd interface && yarn)",
"dev:electron": "electron -r babel-register main.js",
"dev:meteor": "cd interface && meteor --no-release-check",
"dev:tools": "remotedev & (sleep 3 && open http://localhost:8000)",
Expand Down

0 comments on commit 67197a5

Please sign in to comment.