fix(Makefile): set SHELL=/bin/bash so cross target recipes can use bashisms like <<< here-string (fixes /bin/sh syntax error in release CI)
Some checks failed
gobuild / build (push) Failing after 8s
Release / Create Release (push) Failing after 18s

This commit is contained in:
Greg Gauthier 2026-06-06 07:46:05 +01:00
parent b483eab827
commit e49ad4a23d

View File

@ -1,5 +1,9 @@
.PHONY: test test-short test-cover lint build install clean help cross release-notes .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) # Versioning (override on command line or via env for releases)
VERSION ?= dev-$(shell git describe --tags --always --dirty 2>/dev/null || echo unknown) 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) COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo unknown)