Skip to content

Commit

Permalink
feat: eza v0.20.12
Browse files Browse the repository at this point in the history
  • Loading branch information
hanoii committed Dec 13, 2024
1 parent e305ad1 commit 0586013
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ddev/addon-metadata/pimp-my-shell/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: pimp-my-shell
repository: .
version: ""
install_date: "2024-12-06T15:42:21-03:00"
install_date: "2024-12-12T21:22:15-03:00"
project_files:
- web-build/Dockerfile.pimp-my-shell
- homeadditions/.bashrc.d/pimp-my-shell.sh
Expand Down
5 changes: 3 additions & 2 deletions .ddev/web-build/Dockerfile.pimp-my-shell
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN set -eux; \

# eza
RUN set -eux; \
EZA_VERSION=0.20.11; \
EZA_VERSION=0.20.12; \
wget -q https://github.com/eza-community/eza/releases/download/v${EZA_VERSION}/eza_`uname -m`-unknown-linux-gnu.tar.gz -O- | tar -zxf - -C /usr/local/bin; \
wget https://github.com/eza-community/eza/releases/download/v${EZA_VERSION}/completions-${EZA_VERSION}.tar.gz -O eza-completions.tar.gz; \
tar -xzf eza-completions.tar.gz --strip-components=3 -C /etc/bash_completion.d/ ./target/completions-${EZA_VERSION}/eza; \
Expand Down Expand Up @@ -113,7 +113,8 @@ USER root:root

# kitty-terminfo from directoy from their GitHub repo @ master
RUN set -eux; \
url="https://github.com/kovidgoyal/kitty/raw/refs/tags/v0.37.0/terminfo/x/xterm-kitty"; \
KITTY_VERSION=0.37.0; \
url="https://github.com/kovidgoyal/kitty/raw/refs/tags/v${KITTY_VERSION}/terminfo/x/xterm-kitty"; \
mkdir -p /usr/share/terminfo/x; \
cd /usr/share/terminfo/x; \
wget -q "${url}";
Expand Down
5 changes: 3 additions & 2 deletions web-build/Dockerfile.pimp-my-shell
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN set -eux; \

# eza
RUN set -eux; \
EZA_VERSION=0.20.11; \
EZA_VERSION=0.20.12; \
wget -q https://github.com/eza-community/eza/releases/download/v${EZA_VERSION}/eza_`uname -m`-unknown-linux-gnu.tar.gz -O- | tar -zxf - -C /usr/local/bin; \
wget https://github.com/eza-community/eza/releases/download/v${EZA_VERSION}/completions-${EZA_VERSION}.tar.gz -O eza-completions.tar.gz; \
tar -xzf eza-completions.tar.gz --strip-components=3 -C /etc/bash_completion.d/ ./target/completions-${EZA_VERSION}/eza; \
Expand Down Expand Up @@ -113,7 +113,8 @@ USER root:root

# kitty-terminfo from directoy from their GitHub repo @ master
RUN set -eux; \
url="https://github.com/kovidgoyal/kitty/raw/refs/tags/v0.37.0/terminfo/x/xterm-kitty"; \
KITTY_VERSION=0.37.0; \
url="https://github.com/kovidgoyal/kitty/raw/refs/tags/v${KITTY_VERSION}/terminfo/x/xterm-kitty"; \
mkdir -p /usr/share/terminfo/x; \
cd /usr/share/terminfo/x; \
wget -q "${url}";
Expand Down

0 comments on commit 0586013

Please sign in to comment.