Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
help: ## Display this help screen
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'

COMPILER_VERSION=v0.3.0-rc
COMPILER_VERSION=v0.3.0-rc.1

setup-compiler: ## Setup the Dusk Contract Compiler
@./scripts/setup-compiler.sh $(COMPILER_VERSION)
Expand Down
2 changes: 0 additions & 2 deletions scripts/setup-compiler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ if [ ! -d "$UNZIPPED_DIR" ]; then
echo "Extracting compiler..."
mkdir -p "$UNZIPPED_DIR"
unzip "$ARTIFACT_PATH" -d "$UNZIPPED_DIR" >> /dev/null
# We don't require the source of the compiler itself
rm "$UNZIPPED_DIR/rustc-nightly-src.tar.gz"
fi

# Extract the tarballs, if they aren't already extracted
Expand Down
Loading