From aab77d0f2f2cf4221c97a3e663957fa99d6f5409 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 4 Dec 2023 11:17:57 +0000 Subject: [PATCH] images/archlinux: use yay --provides=false instead of --noprovides Fixes this warning: -> '--noprovides' is deprecated. Use '--provides=false' instead --- images/archlinux/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/archlinux/functions b/images/archlinux/functions index 5769cea..4caa889 100644 --- a/images/archlinux/functions +++ b/images/archlinux/functions @@ -18,8 +18,8 @@ install() { sudo pacman -Sy --noconfirm --needed archlinux-keyring # Use pacinstall instead of pacman to resolve conflicts guest_ssh -n -p $port build@localhost sudo pacinstall --sysupgrade --yolo - guest_ssh -p $port build@localhost EDITOR=true PKGEXT=.pkg.tar yay \ - --needed --noconfirm --noprovides -S "$@" + guest_ssh -p $port build@localhost EDITOR=true PKGEXT=.pkg.tar \ + yay --needed --noconfirm --provides=false -S "$@" } add_repository() { -- 2.38.5