fix(Makefile): set SHELL=/bin/bash so cross target recipes can use bashisms like <<< here-string (fixes /bin/sh syntax error in release CI)
This commit is contained in:
parent
b483eab827
commit
e49ad4a23d
4
Makefile
4
Makefile
@ -1,5 +1,9 @@
|
||||
.PHONY: test test-short test-cover lint build install clean help cross release-notes
|
||||
|
||||
SHELL := /bin/bash
|
||||
|
||||
SHELL := /bin/bash
|
||||
|
||||
# Versioning (override on command line or via env for releases)
|
||||
VERSION ?= dev-$(shell git describe --tags --always --dirty 2>/dev/null || echo unknown)
|
||||
COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo unknown)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user