Get rid of -Sy and -Syy

This commit is contained in:
David Heinemeier Hansson
2025-08-27 14:45:59 +02:00
parent e5927fc1b2
commit 4cbc8eef43
4 changed files with 9 additions and 9 deletions

View File

@@ -36,7 +36,7 @@ if [ -n "$(lspci | grep -i 'nvidia')" ]; then
fi
# force package database refresh
sudo pacman -Syy
sudo pacman -Sy
# Install packages
PACKAGES_TO_INSTALL=(

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# Install build tools
sudo pacman -Sy --needed --noconfirm base-devel
sudo pacman -S --needed --noconfirm base-devel
# Add fun and color and verbosity to the pacman installer
if ! grep -q "ILoveCandy" /etc/pacman.conf; then
@@ -32,7 +32,7 @@ if [[ "$(uname -m)" == "x86_64" ]] && [ -z "$DISABLE_CHAOTIC" ]; then
fi
# Refresh all repos
sudo pacman -Sy
sudo pacman -Syu
else
echo -e "Failed to install Chaotic-AUR, so won't include it in pacman config!"
fi