From d346fc8148f506a3e51684ae349cd2f75ddfc1d1 Mon Sep 17 00:00:00 2001 From: Danail Branekov Date: Mon, 13 Jan 2025 11:07:51 +0000 Subject: [PATCH] Enable `globstar` option when running bash commands `clean-bin` target does not clean the `./bin` directory otherwise --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bb97eefa3..551402515 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Setting SHELL to bash allows bash commands to be executed by recipes. # This is a requirement for 'setup-envtest.sh' in the test target. # Options are set to exit when a recipe line exits non-zero or a piped command fails. -SHELL = /usr/bin/env bash -o pipefail +SHELL = /usr/bin/env bash -o pipefail -O globstar .SHELLFLAGS = -ec ##@ General