Spaces:
Sleeping
Sleeping
File size: 244 Bytes
819ff17 | 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
|