Skip to content

Commit eb71c75

Browse files
committed
update binary for 1.64.0+
1 parent fa2bad7 commit eb71c75

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ app_setup_block: |
6161
6262
# changelog
6363
changelogs:
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." }

root/etc/services.d/openvscode-server/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cd /app/openvscode-server || exit
1919

2020
exec \
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}

root/usr/local/bin/install-extension

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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

66
if [ "$(whoami)" == "abc" ]; then
77
"${_install[@]}" "$@"

0 commit comments

Comments
 (0)