changed code-server config

This commit is contained in:
Richard Sperry 2025-04-14 00:36:08 -07:00
parent e189ce90d1
commit efae2ac145
2 changed files with 2 additions and 1 deletions

View file

@ -63,6 +63,7 @@ RUN if [ "${BUILD_ARCH}" = "aarch64" ]; then HA_CLI_URL="https://github.com/home
#Copy root file system
COPY rootfs /
RUN chown -R root:root /root
# Install Oh My ZSH

View file

@ -65,7 +65,7 @@ if [ ! -d "$ext_path" ]; then
# Install code-server extensions via code-server so terminate is aware of them.
while read -r extention; do
if [ ! -e $ext_path/$extention* ]; then
code-server --install-extension="$extention" --extensions-dir="$ext_path" --user-data-dir "$config_path";
code-server --install-extension="$extention" ;
fi;
done < "$DEFAULT_FILES_PATH/vscode.extensions"
fi