File tree Expand file tree Collapse file tree 4 files changed +4
-2
lines changed
etc/services.d/openvscode-server Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -252,6 +252,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
252252
253253## Versions
254254
255+ * ** 04.02.22:** - Update binary for 1.64.0.
255256* ** 29.12.21:** - Add ` install-extension ` as a helper for mods to install extensions.
256257* ** 10.12.21:** - Update deprecated connectionToken arg.
257258* ** 30.11.21:** - Fix app folder permissions, add the optional sudo password vars.
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ app_setup_block: |
6161
6262# changelog
6363changelogs :
64+ - { date: "04.02.22:", desc: "Update binary for 1.64.0." }
6465 - { date: "29.12.21:", desc: "Add `install-extension` as a helper for mods to install extensions." }
6566 - { date: "10.12.21:", desc: "Update deprecated connectionToken arg." }
6667 - { date: "30.11.21:", desc: "Fix app folder permissions, add the optional sudo password vars." }
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ cd /app/openvscode-server || exit
1919
2020exec \
2121 s6-setuidgid abc \
22- /app/openvscode-server/server.sh \
22+ /app/openvscode-server/bin/openvscode- server \
2323 --port 3000 \
2424 --disable-telemetry \
2525 ${CODE_ARGS}
Original file line number Diff line number Diff line change 11#!/usr/bin/with-contenv bash
22# shellcheck shell=bash
33
4- _install=(/app/openvscode-server/server.sh "--extensions-dir" "/config/.vscode-remote/extensions" "--install-extension")
4+ _install=(/app/openvscode-server/bin/openvscode- server "--extensions-dir" "/config/.vscode-remote/extensions" "--install-extension")
55
66if [ "$(whoami)" == "abc" ]; then
77 "${_install[@]}" "$@"
You can’t perform that action at this time.
0 commit comments