From 7ba9a00fee18d0216cf3c2c24909d067cd1d2e3d Mon Sep 17 00:00:00 2001 From: Cuteivist Date: Tue, 7 May 2024 14:02:38 +0200 Subject: [PATCH] chore_: Fix Windows build (#5067) --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 43af78bbb..88cfd8b70 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,9 @@ endef # TODO: Define more specific shells. TARGET := default -SHELL := ./nix/scripts/shell.sh +ifneq ($(detected_OS),Windows) + SHELL := ./nix/scripts/shell.sh +endif shell: export TARGET ?= default shell: ##@prepare Enter into a pre-configured shell ifndef IN_NIX_SHELL