Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
#
# ##

# Use bash with pipefail so targets whose recipes pipe through tee/python
# (e.g. test-full-logged) surface non-zero exits from the upstream command
# instead of being masked by tee's success.
SHELL := bash
.SHELLFLAGS := -o pipefail -c

# Binaries
BIN := func
BIN_DARWIN_AMD64 ?= $(BIN)_darwin_amd64
Expand Down
Loading