Skip to content

Commit

Permalink
Add script/bootstrap file.
Browse files Browse the repository at this point in the history
Fixes #135.
  • Loading branch information
patrickt committed Jun 17, 2019
1 parent 23df12a commit 2d4c889
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Expand Up @@ -101,8 +101,7 @@ We use `cabal's` [Nix-style local builds][nix] for development. To get started q
```bash
git clone git@github.com:github/semantic.git
cd semantic
git submodule sync --recursive && git submodule update --init --recursive --force
cabal new-update
script/bootstrap
cabal new-build
cabal new-test
cabal new-run semantic -- --help
Expand Down
4 changes: 4 additions & 0 deletions script/bootstrap
@@ -0,0 +1,4 @@
#!/bin/bash

git submodule sync --recursive && git submodule update --init --recursive --force
cabal new-update

0 comments on commit 2d4c889

Please sign in to comment.