Skip to content

Commit 97455ac

Browse files
wip
1 parent 91c87f2 commit 97455ac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# TODO: debug why it immediately crashes current terminal on macOS
22

33
.DEFAULT_GOAL := help
4-
SHELL := /bin/bash
4+
SHELL := $(shell which bash)
55
UNAME := $(shell uname -s)
66

77
GREEN := $(shell tput -Txterm setaf 2)
@@ -17,6 +17,7 @@ all: check help homebrew just install xcode
1717
check: ## verify running on macOS
1818
@echo "Verifying macOS..."
1919
$(shell [[ "${UNAME}" != "Darwin" ]] && echo "Not running on macOS"; exit 1)
20+
@echo "Success!"
2021

2122
xcode: check ## install xcode command line tools
2223
@echo "Installing Xcode command line tools..."

0 commit comments

Comments
 (0)