From 2d4c889011b7f7f28521f48a1943077cd7f244f0 Mon Sep 17 00:00:00 2001 From: Patrick Thomson Date: Mon, 17 Jun 2019 13:23:05 -0400 Subject: [PATCH] Add script/bootstrap file. Fixes #135. --- README.md | 3 +-- script/bootstrap | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100755 script/bootstrap diff --git a/README.md b/README.md index 279876578..332782893 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/script/bootstrap b/script/bootstrap new file mode 100755 index 000000000..a1a080e84 --- /dev/null +++ b/script/bootstrap @@ -0,0 +1,4 @@ +#!/bin/bash + +git submodule sync --recursive && git submodule update --init --recursive --force +cabal new-update