We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make init
1 parent 823976e commit f626eacCopy full SHA for f626eac
Makefile
@@ -1,11 +1,16 @@
1
+.PHONY: init
2
init: setup-git
3
which brew || /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
4
brew bundle
5
rbenv install --skip-existing
6
rbenv exec gem update bundler
7
rbenv exec bundle update
8
+
9
+.PHONY: init-samples
10
+init-samples: init
11
cd Samples/TrendingMovies && carthage update --use-xcframeworks
12
13
+.PHONY: setup-git
14
setup-git:
15
ifneq (, $(shell which pre-commit))
16
pre-commit install
0 commit comments