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")