mirror of
https://github.com/linuxserver/docker-code-server.git
synced 2024-11-23 04:25:40 +01:00
11 lines
272 B
Plaintext
Executable File
11 lines
272 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
_install=(/app/code-server/bin/code-server "--extensions-dir" "/config/extensions" "--install-extension")
|
|
|
|
if [ "$(whoami)" == "abc" ]; then
|
|
"${_install[@]}" "$@"
|
|
else
|
|
s6-setuidgid abc "${_install[@]}" "$@"
|
|
fi
|