From 1fe03db9a555f3af5f5dd2582601cd790612de29 Mon Sep 17 00:00:00 2001 From: Ciro Lo Sapio Date: Wed, 16 Oct 2024 20:40:54 +0000 Subject: [PATCH] Bump versions for alpine features and remove zsh completion installations --- src/alpine-aws-cli/devcontainer-feature.json | 2 +- src/alpine-aws-cli/install.sh | 4 ---- src/alpine-bat/devcontainer-feature.json | 2 +- src/alpine-bat/install.sh | 1 - src/alpine-bottom/devcontainer-feature.json | 2 +- src/alpine-bottom/install.sh | 4 ---- src/alpine-broot/devcontainer-feature.json | 2 +- src/alpine-broot/install.sh | 4 ---- src/alpine-deno/devcontainer-feature.json | 2 +- src/alpine-deno/install.sh | 4 ---- src/alpine-docker-outside-of-docker/devcontainer-feature.json | 2 +- src/alpine-docker-outside-of-docker/install.sh | 4 ---- 12 files changed, 6 insertions(+), 27 deletions(-) diff --git a/src/alpine-aws-cli/devcontainer-feature.json b/src/alpine-aws-cli/devcontainer-feature.json index 368dfa9..b359a09 100644 --- a/src/alpine-aws-cli/devcontainer-feature.json +++ b/src/alpine-aws-cli/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "alpine-aws-cli", "id": "alpine-aws-cli", - "version": "0.0.3", + "version": "0.0.4", "description": "Installs aws-cli on alpine", "documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-aws-cli", "installsAfter": [ diff --git a/src/alpine-aws-cli/install.sh b/src/alpine-aws-cli/install.sh index 5865570..86c852c 100644 --- a/src/alpine-aws-cli/install.sh +++ b/src/alpine-aws-cli/install.sh @@ -6,8 +6,4 @@ echo "Activating feature 'alpine-aws-cli'" apk --no-cache add aws-cli -if command -v zsh &> /dev/null; then - apk --no-cache add aws-cli-zsh-completion -fi - echo 'Done!' \ No newline at end of file diff --git a/src/alpine-bat/devcontainer-feature.json b/src/alpine-bat/devcontainer-feature.json index da708db..8f55d12 100644 --- a/src/alpine-bat/devcontainer-feature.json +++ b/src/alpine-bat/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "alpine-bat", "id": "alpine-bat", - "version": "0.0.12", + "version": "0.0.13", "description": "Installs bat on alpine", "documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-bat", "installsAfter": [ diff --git a/src/alpine-bat/install.sh b/src/alpine-bat/install.sh index 7af83fc..3992a76 100644 --- a/src/alpine-bat/install.sh +++ b/src/alpine-bat/install.sh @@ -15,7 +15,6 @@ if command -v zsh &> /dev/null; then fi fi - apk --no-cache add bat-zsh-completion echo $'\nalias cat=bat' >> $_CONTAINER_USER_HOME/.zshrc fi diff --git a/src/alpine-bottom/devcontainer-feature.json b/src/alpine-bottom/devcontainer-feature.json index a0306bf..c81a068 100644 --- a/src/alpine-bottom/devcontainer-feature.json +++ b/src/alpine-bottom/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "alpine-bottom", "id": "alpine-bottom", - "version": "0.0.5", + "version": "0.0.6", "description": "Installs bottom on alpine", "documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-bottom", "installsAfter": [ diff --git a/src/alpine-bottom/install.sh b/src/alpine-bottom/install.sh index e0078fa..a70e83b 100644 --- a/src/alpine-bottom/install.sh +++ b/src/alpine-bottom/install.sh @@ -6,8 +6,4 @@ echo "Activating feature 'alpine-bottom'" apk --no-cache add bottom -if command -v zsh &> /dev/null; then - apk --no-cache add bottom-zsh-completion -fi - echo 'Done!' \ No newline at end of file diff --git a/src/alpine-broot/devcontainer-feature.json b/src/alpine-broot/devcontainer-feature.json index 8a59591..681ae26 100644 --- a/src/alpine-broot/devcontainer-feature.json +++ b/src/alpine-broot/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "alpine-broot", "id": "alpine-broot", - "version": "0.0.4", + "version": "0.0.5", "description": "Installs broot on alpine", "documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-broot", "installsAfter": [ diff --git a/src/alpine-broot/install.sh b/src/alpine-broot/install.sh index ec3fb18..f4d8320 100644 --- a/src/alpine-broot/install.sh +++ b/src/alpine-broot/install.sh @@ -6,8 +6,4 @@ echo "Activating feature 'alpine-broot'" apk --no-cache add broot -if command -v zsh &> /dev/null; then - apk --no-cache add broot-zsh-completion -fi - echo 'Done!' \ No newline at end of file diff --git a/src/alpine-deno/devcontainer-feature.json b/src/alpine-deno/devcontainer-feature.json index 686b3e5..c7ab280 100644 --- a/src/alpine-deno/devcontainer-feature.json +++ b/src/alpine-deno/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "alpine-deno", "id": "alpine-deno", - "version": "0.0.6", + "version": "0.0.7", "description": "Installs deno on alpine", "documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-deno", "installsAfter": [ diff --git a/src/alpine-deno/install.sh b/src/alpine-deno/install.sh index 7c6120d..087a9de 100644 --- a/src/alpine-deno/install.sh +++ b/src/alpine-deno/install.sh @@ -6,8 +6,4 @@ echo "Activating feature 'alpine-deno'" apk --no-cache add deno -if command -v zsh &> /dev/null; then - apk --no-cache add deno-zsh-completion -fi - echo 'Done!' \ No newline at end of file diff --git a/src/alpine-docker-outside-of-docker/devcontainer-feature.json b/src/alpine-docker-outside-of-docker/devcontainer-feature.json index 3468488..d5a7966 100644 --- a/src/alpine-docker-outside-of-docker/devcontainer-feature.json +++ b/src/alpine-docker-outside-of-docker/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "alpine-docker-outside-of-docker", "id": "alpine-docker-outside-of-docker", - "version": "0.0.18", + "version": "0.0.19", "description": "Re-use the host docker socket, adding the Docker CLI to alpine container", "documentationURL": "https://github.com/cirolosapio/devcontainers-features/tree/main/src/alpine-docker-outside-of-docker", "installsAfter": [ diff --git a/src/alpine-docker-outside-of-docker/install.sh b/src/alpine-docker-outside-of-docker/install.sh index b10ae65..872a0a1 100644 --- a/src/alpine-docker-outside-of-docker/install.sh +++ b/src/alpine-docker-outside-of-docker/install.sh @@ -45,8 +45,4 @@ if [[ $INSTALLDOCKERCOMPOSE == "true" ]]; then apk --no-cache add docker-compose fi -if command -v zsh &> /dev/null; then - apk --no-cache add docker-zsh-completion -fi - echo 'Done!' \ No newline at end of file