Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 2d4c889

Browse files
author
Patrick Thomson
committed
Add script/bootstrap file.
Fixes #135.
1 parent 23df12a commit 2d4c889

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,7 @@ We use `cabal's` [Nix-style local builds][nix] for development. To get started q
101101
```bash
102102
git clone git@github.com:github/semantic.git
103103
cd semantic
104-
git submodule sync --recursive && git submodule update --init --recursive --force
105-
cabal new-update
104+
script/bootstrap
106105
cabal new-build
107106
cabal new-test
108107
cabal new-run semantic -- --help

script/bootstrap

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
git submodule sync --recursive && git submodule update --init --recursive --force
4+
cabal new-update

0 commit comments

Comments
 (0)