-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove noirup from noir-contract's bootstrap (#3252)
Removes the noirup commands from noir-compiler's bootstrap script as it's not needed since the switch to noir_wasm.
- Loading branch information
Showing
2 changed files
with
3 additions
and
15 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,15 +1,3 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
# Install noir if it is not installed already | ||
if ! command -v noirup &> /dev/null | ||
then | ||
echo "Installing noir" | ||
source ./scripts/install_noirup.sh | ||
fi | ||
|
||
# Update noir | ||
./scripts/install_noir.sh | ||
|
||
# Use yarn script to compile and create types | ||
yarn | ||
yarn noir:build:all | ||
yarn noir:build:all |
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