diff options
author | Lucas Fernando Nunes <lucasfc.nunes@gmail.com> | 2022-09-08 03:35:51 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-08 03:35:51 +0300 |
commit | 32578d6c4d28d78e17f3943273f3445dec3b2bd9 (patch) | |
tree | fcfc80400fffaf4d85b6a1b17ab8b2b7b3331c68 | |
parent | 8218a6d3c16af67dc7b068113f1dbbb403c2ce0a (diff) |
add bzip2 to common-utils (former https://github.com/microsoft/vscode-dev-containers/pull/1586) (#142)
* add bzip2
* bump version
-rw-r--r-- | src/common-utils/devcontainer-feature.json | 2 | ||||
-rwxr-xr-x | src/common-utils/install.sh | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/common-utils/devcontainer-feature.json b/src/common-utils/devcontainer-feature.json index af77238..6189fa7 100644 --- a/src/common-utils/devcontainer-feature.json +++ b/src/common-utils/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "common-utils", - "version": "1.0.5", + "version": "1.1.0", "name": "Common Debian Utilities", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/common-utils", "description": "Installs a set of common command line utilities, Oh My Zsh!, and sets up a non-root user.", diff --git a/src/common-utils/install.sh b/src/common-utils/install.sh index 0a62569..0d11532 100755 --- a/src/common-utils/install.sh +++ b/src/common-utils/install.sh @@ -85,6 +85,7 @@ if [ "${PACKAGES_ALREADY_INSTALLED}" != "true" ]; then rsync \ ca-certificates \ unzip \ + bzip2 \ zip \ nano \ vim-tiny \ |