Install packages as explicit
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
9b4201f142
commit
f40a95a2e7
1 changed files with 2 additions and 2 deletions
4
install
4
install
|
@ -223,7 +223,7 @@ package_count=$(< "${PACKAGES_DIR}/packages.native.list" wc -l)
|
|||
if ask_prompt "Do you want to install ${package_count} Arch packages?"; then
|
||||
print_log "Installing ${package_count} Arch packages"
|
||||
yay -Syy > /dev/null 2>&1
|
||||
yay -S --noconfirm --sudoloop --needed --devel --nopgpfetch --mflags --skippgpcheck - < "${PACKAGES_DIR}/packages.native.list"
|
||||
yay -S --asexplicit --noconfirm --sudoloop --needed --devel --nopgpfetch --mflags --skippgpcheck - < "${PACKAGES_DIR}/packages.native.list"
|
||||
fi
|
||||
|
||||
|
||||
|
@ -241,7 +241,7 @@ package_count=$(< "${PACKAGES_DIR}/packages.aur.list" wc -l)
|
|||
if ask_prompt "Do you want to install ${package_count} AUR packages?"; then
|
||||
print_log "Installing ${package_count} AUR packages"
|
||||
yay -Syy > /dev/null 2>&1
|
||||
yay -S --noconfirm --sudoloop --needed --devel --nopgpfetch --mflags --skippgpcheck - < "${PACKAGES_DIR}/packages.aur.list"
|
||||
yay -S --asexplicit --noconfirm --sudoloop --needed --devel --nopgpfetch --mflags --skippgpcheck - < "${PACKAGES_DIR}/packages.aur.list"
|
||||
fi
|
||||
|
||||
# Remove unneeded packages
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue