fix(buildah): add && to correct the command

This commit is contained in:
yeti 2025-04-17 16:50:24 +01:00
parent f1a93ae19e
commit 28f4229768

View File

@ -13,7 +13,7 @@ ctr=$(buildah from archlinux)
buildah run "$ctr" -- bash -c "\
pacman -Sy --noconfirm && pacman -S --noconfirm neovim git zsh tmux podman \
fzf fd ripgrep jdk-openjdk && pacman -Scc --noconfirm \
fzf fd ripgrep jdk-openjdk && pacman -Scc --noconfirm && \
useradd -ms /bin/zsh $DEV_USER && \
useradd --system --no-create-home --shell /usr/sbin/nologin viewer && \
usermod -aG $DEV_USER viewer && mkdir -p /tmp/tmux-shared && \