From a87d6cffab43a7f3303d924b8279aada28baf93a Mon Sep 17 00:00:00 2001 From: Savil Srivastava <676452+savil@users.noreply.github.com> Date: Thu, 28 Sep 2023 10:18:04 -0700 Subject: [PATCH] [features] Turn off Remove Nixpkgs and Script Exit on Error --- internal/boxcli/featureflag/remove_nixpkgs.go | 2 +- internal/boxcli/featureflag/script_exit_on_error.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/boxcli/featureflag/remove_nixpkgs.go b/internal/boxcli/featureflag/remove_nixpkgs.go index 475a634534e..aef1bfea963 100644 --- a/internal/boxcli/featureflag/remove_nixpkgs.go +++ b/internal/boxcli/featureflag/remove_nixpkgs.go @@ -4,4 +4,4 @@ package featureflag // It leverages the search index to directly map @ to // the /nix/store/-- that can be fetched from // cache.nixpkgs.org. -var RemoveNixpkgs = enable("REMOVE_NIXPKGS") +var RemoveNixpkgs = disable("REMOVE_NIXPKGS") diff --git a/internal/boxcli/featureflag/script_exit_on_error.go b/internal/boxcli/featureflag/script_exit_on_error.go index 920d034e2fb..e5a562cb250 100644 --- a/internal/boxcli/featureflag/script_exit_on_error.go +++ b/internal/boxcli/featureflag/script_exit_on_error.go @@ -5,4 +5,4 @@ package featureflag // ScriptExitOnError controls whether scripts defined in devbox.json // and executed via `devbox run` should exit if any command within them errors. -var ScriptExitOnError = enable("SCRIPT_EXIT_ON_ERROR") +var ScriptExitOnError = disable("SCRIPT_EXIT_ON_ERROR")