From 10ceade160d9955295657259e38e263dbf01a376 Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 12 Feb 2022 16:17:37 -0500 Subject: [PATCH] update install-extension helper --- Dockerfile | 1 - Dockerfile.aarch64 | 1 - Dockerfile.armhf | 1 - README.md | 1 + readme-vars.yml | 1 + root/usr/local/bin/install-extension | 2 +- 6 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index ad802dd..7e91927 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,6 @@ RUN \ git \ jq \ libatomic1 \ - libsecret-1-0 \ nano \ net-tools \ sudo && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 1a20cbc..2003e69 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -17,7 +17,6 @@ RUN \ git \ jq \ libatomic1 \ - libsecret-1-0 \ nano \ net-tools \ sudo && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index e79d863..2807e33 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -17,7 +17,6 @@ RUN \ git \ jq \ libatomic1 \ - libsecret-1-0 \ nano \ net-tools \ sudo && \ diff --git a/README.md b/README.md index 9120a46..28edb81 100644 --- a/README.md +++ b/README.md @@ -252,6 +252,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **12.02.22:** - Update `install-extension` helper to compensate for upstream changes. * **04.02.22:** - Update binary for 1.64.0+. Allow for no token set when both toekn env vars are unset. Add libsecret for keytar. * **29.12.21:** - Add `install-extension` as a helper for mods to install extensions. * **10.12.21:** - Update deprecated connectionToken arg. diff --git a/readme-vars.yml b/readme-vars.yml index 8e42a06..2242abf 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -61,6 +61,7 @@ app_setup_block: | # changelog changelogs: + - { date: "12.02.22:", desc: "Update `install-extension` helper to compensate for upstream changes." } - { date: "04.02.22:", desc: "Update binary for 1.64.0+. Allow for no token set when both toekn env vars are unset. Add libsecret for keytar." } - { date: "29.12.21:", desc: "Add `install-extension` as a helper for mods to install extensions." } - { date: "10.12.21:", desc: "Update deprecated connectionToken arg." } diff --git a/root/usr/local/bin/install-extension b/root/usr/local/bin/install-extension index c5fbc60..a95290b 100755 --- a/root/usr/local/bin/install-extension +++ b/root/usr/local/bin/install-extension @@ -1,7 +1,7 @@ #!/usr/bin/with-contenv bash # shellcheck shell=bash -_install=(/app/openvscode-server/bin/openvscode-server "--extensions-dir" "/config/.vscode-remote/extensions" "--install-extension") +_install=(/app/openvscode-server/bin/openvscode-server "--install-extension") if [ "$(whoami)" == "abc" ]; then "${_install[@]}" "$@"