mirror of
https://github.com/linuxserver/docker-openvscode-server.git
synced 2026-02-23 00:04:39 +08:00
10 lines
243 B
Plaintext
Executable File
10 lines
243 B
Plaintext
Executable File
#!/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 |