From 21ffa388cca5ad2c515884ee5004ab6da36eb0b2 Mon Sep 17 00:00:00 2001 From: Miguel Fernandez Date: Thu, 28 Dec 2023 15:05:20 +0100 Subject: [PATCH] Fix build-qe-wasm when nix is not installed --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 21b8f03b4a54..fa7bc33c7dba 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CONFIG_FILE = .test_config SCHEMA_EXAMPLES_PATH = ./query-engine/example_schemas DEV_SCHEMA_FILE = dev_datamodel.prisma DRIVER_ADAPTERS_BRANCH ?= main -NIX := $(shell command -v nix 2> /dev/null) +NIX := $(shell type nix 2> /dev/null) LIBRARY_EXT := $(shell \ case "$$(uname -s)" in \