From d82cca843a5a1e703735fc4fceb3317b96af4bf6 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Tue, 17 Sep 2024 01:27:45 +0200 Subject: [PATCH] build(Makefile): add %-shell stub --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 7145adc25..53c076b9a 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,11 @@ release: git commit -m "chore(release): ${VERSION}" git push +.PHONY: %-shell +%-shell: + @echo "TODO: build specified container, run it and drop into bash" + exit 1 + ##### GENERAL TARGETS ##### ###########################