The commented out run of update-cargo.py prevents cargo build from running

This commit is contained in:
Justin LeBlanc 2024-11-11 14:56:45 +00:00
parent 82301b15f3
commit fbd9a36902

View File

@ -46,7 +46,6 @@ build-dev-fast: ## Slower to compile, faster to execute. Builds all projects
@set -e; \
./choo hoon/main.hoon hoon; \
cp out.jam assets/jocktest.jam; \
# python3 update-cargo.py; \
cargo build $(PROFILE_DEV_FAST)
.PHONY: build-parallel
@ -54,7 +53,6 @@ build-parallel: ## profiling profile with parallel feature enabled
@set -e; \
./choo hoon/main.hoon hoon; \
cp out.jam assets/jocktest.jam; \
# python3 update-cargo.py; \
cargo build $(FEATURES_PARALLEL) $(PROFILE_PROFILING)
.PHONY: build
@ -62,7 +60,6 @@ build-dev-debug: ## Fast to compile, slow to execute. Builds all projects
@set -e; \
./choo hoon/main.hoon hoon; \
cp out.jam assets/jocktest.jam; \
# python3 update-cargo.py; \
cargo build
.PHONY: build-release
@ -70,7 +67,6 @@ build-release: ## Slowest to compile, fastest to execute. Builds all projects
@set -e; \
./choo hoon/main.hoon hoon; \
cp out.jam assets/jocktest.jam; \
# python3 update-cargo.py; \
cargo build $(PROFILE_RELEASE)
.PHONY: update-choo