Skip to content

Commit 2c3599b

Browse files
authored
Merge pull request #18 from linuxserver/insiders-helper
update install-extension helper
2 parents 484250d + 3abbffa commit 2c3599b

File tree

6 files changed

+3
-4
lines changed

6 files changed

+3
-4
lines changed

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ RUN \
1717
git \
1818
jq \
1919
libatomic1 \
20-
libsecret-1-0 \
2120
nano \
2221
net-tools \
2322
sudo && \

Dockerfile.aarch64

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ RUN \
1717
git \
1818
jq \
1919
libatomic1 \
20-
libsecret-1-0 \
2120
nano \
2221
net-tools \
2322
sudo && \

Dockerfile.armhf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ RUN \
1717
git \
1818
jq \
1919
libatomic1 \
20-
libsecret-1-0 \
2120
nano \
2221
net-tools \
2322
sudo && \

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+
* **12.02.22:** - Update `install-extension` helper to compensate for upstream changes.
255256
* **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.
256257
* **29.12.21:** - Add `install-extension` as a helper for mods to install extensions.
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
@@ -62,6 +62,7 @@ app_setup_block: |
6262
6363
# changelog
6464
changelogs:
65+
- { date: "12.02.22:", desc: "Update `install-extension` helper to compensate for upstream changes." }
6566
- { 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." }
6667
- { date: "29.12.21:", desc: "Add `install-extension` as a helper for mods to install extensions." }
6768
- { date: "30.11.21:", desc: "Fix app folder permissions, add the optional sudo password vars." }

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/bin/openvscode-server "--extensions-dir" "/config/.vscode-remote/extensions" "--install-extension")
4+
_install=(/app/openvscode-server/bin/openvscode-server "--install-extension")
55

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

0 commit comments

Comments
 (0)