-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
As title. Removing bootstrapping boxes as: * It doesn't work (think it needs to be done after the yarn build), and it doesn't fail due to missing `set -e` flags. * It isn't needed? We only need to bootstrap what's needed to get a working dev env for running tests.
- Loading branch information
1 parent
dd8ea9c
commit 06aedcb
Showing
3 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
#!/bin/bash | ||
set -eu | ||
|
||
# Navigate to script folder | ||
cd "$(dirname "$0")" | ||
|
||
(cd cpp && ./bootstrap.sh) | ||
cd ts | ||
yarn build | ||
npm link | ||
(cd ts && yarn install --immutable && yarn build && npm link) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters