Compare commits

...

6 Commits

Author SHA1 Message Date
Dylan Conway
ac8ba83719 Merge branch 'main' into dylan/trust-bunx 2025-11-03 16:13:44 -08:00
Dylan Conway
4ede22231f Merge branch 'main' into dylan/trust-bunx 2025-05-27 11:10:28 -07:00
Dylan Conway
4594fddafb Merge branch 'main' into dylan/trust-bunx 2025-05-19 12:44:35 -07:00
claude[bot]
e09fd0f927 Move the --trust flag to the initial args array
Instead of appending --trust separately, include it directly in the initial args array since flag order doesn't matter.

Co-authored-by: dylan-conway <dylan-conway@users.noreply.github.com>"
2025-05-19 19:33:28 +00:00
Dylan Conway
ad47eaec54 Merge branch 'main' into dylan/trust-bunx 2025-05-13 16:57:09 -07:00
Dylan Conway
4f9c8eaca9 add --trust 2025-05-13 16:49:14 -07:00

View File

@@ -711,11 +711,12 @@ pub const BunxCommand = struct {
package_json.writeAll("{}\n") catch {};
}
var args = bun.BoundedArray([]const u8, 8).fromSlice(&.{
var args = bun.BoundedArray([]const u8, 9).fromSlice(&.{
try bun.selfExePath(),
"add",
install_param,
"--no-summary",
"--trust",
}) catch
unreachable; // upper bound is known