Skip to content

Commit 0d64e71

Browse files
authored
[features] Turn off Remove Nixpkgs and Script Exit on Error (#1510)
## Summary Turning these off to reduce scope of the next release. ## How was it tested? did not test. Will rely on CICD being green.
1 parent 5ed2c80 commit 0d64e71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/boxcli/featureflag/remove_nixpkgs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ package featureflag
44
// It leverages the search index to directly map <package>@<version> to
55
// the /nix/store/<hash>-<package>-<version> that can be fetched from
66
// cache.nixpkgs.org.
7-
var RemoveNixpkgs = enable("REMOVE_NIXPKGS")
7+
var RemoveNixpkgs = disable("REMOVE_NIXPKGS")

internal/boxcli/featureflag/script_exit_on_error.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package featureflag
55

66
// ScriptExitOnError controls whether scripts defined in devbox.json
77
// and executed via `devbox run` should exit if any command within them errors.
8-
var ScriptExitOnError = enable("SCRIPT_EXIT_ON_ERROR")
8+
var ScriptExitOnError = disable("SCRIPT_EXIT_ON_ERROR")

0 commit comments

Comments
 (0)