We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be5c859 commit fc996b6Copy full SHA for fc996b6
.github/.devcontainer/devcontainer.json
@@ -16,7 +16,8 @@
16
"./features/activestorage": {},
17
"./features/postgres-client": {},
18
"./features/mysql-client": {},
19
- "./features/sqlite3": {}
+ "./features/sqlite3": {},
20
+ "./features/bun": {}
21
},
22
// Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
23
"remoteUser": "vscode"
features/bun/install.sh
@@ -1,4 +1,6 @@
1
#!/bin/sh
2
set -e
3
4
-curl -fsSL https://bun.sh/install | bash
+USERNAME="${USERNAME:-"${_REMOTE_USER:-"automatic"}"}"
5
+
6
+su ${USERNAME} -c "curl -fsSL https://bun.sh/install | bash"
0 commit comments