Skip to content
Snippets Groups Projects
Verified Commit 910d0258 authored by David Runge's avatar David Runge :chipmunk:
Browse files

fix(justfile): Ensure `install-pacman-dev-packages` recipe works


Fix the wrong use of the `PACMAN_DEV_PACKAGES` environment
variable in the `install-pacman-dev-packages` recipe (it is called
`PACMAN_PACKAGES`).
Execute `pacman` using `run0` to ensure it can be run without `sudo` on
any newer systemd-based system.
Don't update the system but simply install the packages.

Signed-off-by: default avatarDavid Runge <dvzrv@archlinux.org>
parent 2abcabcb
No related branches found
No related tags found
1 merge request!154Add (non-)administrative secret handling for `ParallelHermeticConfig`
......@@ -26,7 +26,7 @@ dev-install: install-pacman-dev-packages install-rust-dev-tools
# Installs development packages using pacman
install-pacman-dev-packages:
# All packages are set in the `.env` file
pacman -Syu --needed --noconfirm $PACMAN_DEV_PACKAGES
run0 pacman -S --needed --noconfirm $PACMAN_PACKAGES
# Installs all Rust tools required for development
install-rust-dev-tools:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment