Skip to content

Commit

Permalink
Bump bunfix to support websocket
Browse files Browse the repository at this point in the history
  • Loading branch information
willnode committed Feb 14, 2024
1 parent 1799a35 commit e5a2640
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.41.2",
"version": "0.41.3",
"description": "Deployment runner for DOM Cloud",
"main": "app.js",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/executor/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +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.5/proxyfix-linux-amd64 -O ~/.local/bin/bunfix && chmod +x ~/.local/bin/bunfix || true`);
await sshExec(`(cd ~/.local/bin/; wget -qO- https://github.com/domcloud/proxy-fix/releases/download/v0.1.2/proxy-fix-linux-amd64.tar.gz | tar xz && mv proxy-fix-linux-amd64 bunfix)`);
await sshExec("bun --version");
}
break;
Expand Down

0 comments on commit e5a2640

Please sign in to comment.