Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc: add cloning instructions to README #179

Merged
merged 1 commit into from
May 15, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,17 @@ runners](.github/actions/install-llvm/index.js):
that you can download and extract to your machine. Once downloaded and extracted, add the `<extract_dir>/bin`
folder to the `PATH` environment variable.

### Compiling
### Clone source

```bash
git clone https://github.com/mun-lang/mun.git

git submodule update --init --recursive
```

### Compiling

```bash
cargo build --release
```

Expand Down