You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a `devbox add --patch <mode>` flag that replaces `--patch-glibc` and
a corresponding `patch` JSON field that replaces `patch_glibc`. The new
name reflects the new patching behavior, which affects more than just
glibc.
The new patch flag/field is a string instead of a bool. Valid values are
`auto`, `always` and `never`. The default is `auto`.
devbox add --patch <auto/always/never>
- `auto` - let Devbox decide if a package should be patched. Currently
only enables patching for Python or if `patch_glibc` is true in the
config.
- `always` - always attempt to patch a package. Corresponds to the
`--patch-glibc=true` behavior.
- `never` - never patch a package, even if `auto` would.
If a config has an existing package with the `"patch_glibc": true`
field, it's interpreted as `"patch": "always"` but the config itself
isn't modified. However, if the user runs a command that does write to
the config, then `patch_glibc` will be migrated to `patch`.
Example `devbox.json`:
```json5
{
"packages": {
"ruby": {
"version": "latest",
"patch": "always"
}
"python": {
"version": "latest"
// No patch field implies "auto".
// "patch": "auto"
}
}
}
```
0 commit comments