diff options
| author | 2026-04-21 01:23:29 +0100 | |
|---|---|---|
| committer | 2026-04-21 01:23:29 +0100 | |
| commit | 1e8276a8f39fe9c7b0a076692e8cff87162f8e45 (patch) | |
| tree | 51143468106195b46b9a82aaf81f5b6d117c085b /justfile | |
| parent | 098fd7b994bb1c9953de0e303ca9fa5d07916579 (diff) | |
| download | dotfiles-1e8276a8f39fe9c7b0a076692e8cff87162f8e45.tar.gz dotfiles-1e8276a8f39fe9c7b0a076692e8cff87162f8e45.tar.bz2 dotfiles-1e8276a8f39fe9c7b0a076692e8cff87162f8e45.zip | |
fix: 'just remove' only edits the list, never uninstalls
Package may belong to other groups; uninstall is the user's call (use
'just undeclared | paru -Rs -' afterward if desired).
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -157,7 +157,7 @@ add group +pkgs: paru -S --needed {{ pkgs }} -# Remove one or more packages from a group list and uninstall them (e.g. just remove dev ripgrep fd) +# Remove one or more packages from a group list (does NOT uninstall; the package may belong to other groups) remove group +pkgs: #!/bin/sh set -eu @@ -174,7 +174,6 @@ remove group +pkgs: echo "$pkg not in {{ group }}.txt" fi done - paru -Rsn {{ pkgs }} # ═══════════════════════════════════════════════════════════════════ |
