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.
1 parent 91c87f2 commit 97455acCopy full SHA for 97455ac
Makefile
@@ -1,7 +1,7 @@
1
# TODO: debug why it immediately crashes current terminal on macOS
2
3
.DEFAULT_GOAL := help
4
-SHELL := /bin/bash
+SHELL := $(shell which bash)
5
UNAME := $(shell uname -s)
6
7
GREEN := $(shell tput -Txterm setaf 2)
@@ -17,6 +17,7 @@ all: check help homebrew just install xcode
17
check: ## verify running on macOS
18
@echo "Verifying macOS..."
19
$(shell [[ "${UNAME}" != "Darwin" ]] && echo "Not running on macOS"; exit 1)
20
+ @echo "Success!"
21
22
xcode: check ## install xcode command line tools
23
@echo "Installing Xcode command line tools..."
0 commit comments