aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--justfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/justfile b/justfile
index 2febfea..5eae805 100644
--- a/justfile
+++ b/justfile
@@ -35,7 +35,7 @@ fix:
done
if [ $((installed * 2)) -ge "$total" ] && [ "$installed" -lt "$total" ]; then
echo ">>> topping up $group ($installed/$total installed)"
- echo "$pkgs" | paru -S --needed --noconfirm -
+ echo "$pkgs" | paru -S --needed --noconfirm --ask=4 -
fi
done
@@ -129,13 +129,13 @@ groups group="":
install *groups:
#!/bin/sh
for group in {{ groups }}; do
- grep -v '^\s*#' "meta/${group}.txt" | grep -v '^\s*$' | paru -S --needed --noconfirm -
+ grep -v '^\s*#' "meta/${group}.txt" | grep -v '^\s*$' | paru -S --needed --noconfirm --ask=4 -
done
# Install every package group
install-all:
#!/bin/sh
- cat meta/*.txt | grep -v '^\s*#' | grep -v '^\s*$' | sort -u | paru -S --needed --noconfirm -
+ cat meta/*.txt | grep -v '^\s*#' | grep -v '^\s*$' | sort -u | paru -S --needed --noconfirm --ask=4 -
# Append a package to a group list and install it (e.g. just add dev ripgrep)
add group pkg: