Skip to content

Commit

Permalink
Add bun fix proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
willnode committed Feb 5, 2024
1 parent 827c692 commit 24f70ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "domcloud-bridge",
"version": "0.39.2",
"version": "0.40.1",
"description": "Deployment runner for DOM Cloud",
"main": "app.js",
"engines": {
Expand Down
1 change: 1 addition & 0 deletions src/executor/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,7 @@ export default async function runConfig(config, domain, writer, sandbox = false)
await writeLog("$> Changing Bun engine to " + (value || 'latest'));
await sshExec("command -v pathman &> /dev/null || (curl -sS https://webinstall.dev/pathman | bash) ; source ~/.bashrc");
await sshExec(`curl -sS https://webinstall.dev/bun${arg} | bash ; source ~/.config/envman/PATH.env`);
await sshExec(`wget https://github.com/domcloud/proxy-fix/releases/download/v0.0.4/proxyfix-linux-amd64 -O ~/.local/bin/bunfix && chmod +x ~/.local/bin/bunfix || true`);
await sshExec("bun --version");
}
break;
Expand Down

0 comments on commit 24f70ae

Please sign in to comment.