Skip to content

Commit

Permalink
build(project): enforce go module deps immutability in install
Browse files Browse the repository at this point in the history
  • Loading branch information
ccamel committed Dec 4, 2024
1 parent 70eaa0c commit d2c2738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ $(ENVIRONMENTS_TARGETS):
.PHONY: install
install: ## Install node executable
@echo "${COLOR_CYAN} 🚚 Installing project ${BINARY_NAME}${COLOR_RESET}"
@go install ${BUILD_FLAGS} ${CMD_ROOT}
@go install -mod=readonly ${BUILD_FLAGS} ${CMD_ROOT}

## Test:
.PHONY: test
Expand Down

0 comments on commit d2c2738

Please sign in to comment.