Duplicated from SpacesExamples/vscode
f3ec5f5
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/with-contenv bash # shellcheck shell=bash _install=(/app/openvscode-server/bin/openvscode-server "--install-extension") if [ "$(whoami)" == "abc" ]; then "${_install[@]}" "$@" else s6-setuidgid abc "${_install[@]}" "$@" fi