Skip to content

Commit f626eac

Browse files
authored
meta: separate long-running task from make init (#2078)
1 parent 823976e commit f626eac

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1+
.PHONY: init
12
init: setup-git
23
which brew || /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
34
brew bundle
45
rbenv install --skip-existing
56
rbenv exec gem update bundler
67
rbenv exec bundle update
8+
9+
.PHONY: init-samples
10+
init-samples: init
711
cd Samples/TrendingMovies && carthage update --use-xcframeworks
812

13+
.PHONY: setup-git
914
setup-git:
1015
ifneq (, $(shell which pre-commit))
1116
pre-commit install

0 commit comments

Comments
 (0)