From 244636e599d73640edfa99b78d71a2d8093e9eb0 Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 21 Feb 2022 21:46:31 +0100 Subject: [PATCH] patch: enable all experimental features (@DavHau) --- src/libstore/globals.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc index 81ca9cc0f..7d5a9b2c8 100644 --- a/src/libstore/globals.cc +++ b/src/libstore/globals.cc @@ -168,8 +168,7 @@ bool Settings::isExperimentalFeatureEnabled(const ExperimentalFeature & feature) void Settings::requireExperimentalFeature(const ExperimentalFeature & feature) { - if (!isExperimentalFeatureEnabled(feature)) - throw MissingExperimentalFeature(feature); + return; } bool Settings::isWSL1()