Skip to content

Commit dba4cc5

Browse files
build (Makefile): add copier
1 parent ac3ea04 commit dba4cc5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

project/Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ endef
5252

5353
# targets
5454
.PHONY: all
55-
all: help asdf xcode brew jq pre-commit sccache task yq ## run all targets
55+
all: help asdf xcode brew copier jq pre-commit sccache task yq ## run all targets
5656

5757
xcode: ## install xcode command line tools
5858
ifeq ($(UNAME), Darwin)
@@ -106,6 +106,9 @@ asdf: xcode ## install asdf
106106
echo "asdf already installed."; \
107107
fi
108108

109+
copier: brew ## install copier
110+
$(call brew_install,copier)
111+
109112
jq: brew ## install jq
110113
$(call brew_install,jq)
111114

@@ -121,7 +124,7 @@ task: brew ## install taskfile
121124
yq: brew ## install yq
122125
$(call brew_install,yq)
123126

124-
install: xcode asdf brew jq pre-commit sccache task yq ## install dependencies
127+
install: xcode asdf brew copier jq pre-commit sccache task yq ## install dependencies
125128

126129
help: ## show this help
127130
@echo ''

0 commit comments

Comments
 (0)