diff options
| author | Aiden Cline <[email protected]> | 2026-04-20 00:49:46 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-04-20 00:49:46 -0500 |
| commit | e539efe2b9a627927ffcb1420098a69038d042e2 (patch) | |
| tree | c2a63687ba9358aa6b2792925929971b1c623fea /patches/@npmcli%[email protected] | |
| parent | 687b7588820df02dfe7397a399f213f394aa6b09 (diff) | |
| download | opencode-e539efe2b9a627927ffcb1420098a69038d042e2.tar.gz opencode-e539efe2b9a627927ffcb1420098a69038d042e2.zip | |
fix: patch arborist to get around bun bug (#23460)
Diffstat (limited to 'patches/@npmcli%[email protected]')
| -rw-r--r-- | patches/@npmcli%[email protected] | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/patches/@npmcli%[email protected] b/patches/@npmcli%[email protected] new file mode 100644 index 000000000..a3506a90e --- /dev/null +++ b/patches/@npmcli%[email protected] @@ -0,0 +1,13 @@ +diff --git a/lib/agents.js b/lib/agents.js +index 45ec59c4c13757379095131c4f0a5ea6f7284f45..0763b031e355a755ec6a26f98461aa3f63b8339b 100644 +--- a/lib/agents.js ++++ b/lib/agents.js +@@ -32,7 +32,7 @@ module.exports = class Agent extends AgentBase { + } + + get proxy () { +- return this.#proxy ? { url: this.#proxy } : {} ++ return this.#proxy ? { url: this.#proxy.toString() } : {} + } + + #getProxy (options) { |
