From 54bd03d4fddda668322a0f475b1fcc3615f65681 Mon Sep 17 00:00:00 2001 From: "Gerd v. Egidy" Date: Sat, 10 Dec 2022 21:05:17 +0100 Subject: [PATCH] use new pacman-faketime wrapper in yay-prepare --- airootfs/usr/share/sysrescue/bin/yay-prepare | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airootfs/usr/share/sysrescue/bin/yay-prepare b/airootfs/usr/share/sysrescue/bin/yay-prepare index f250528..379122b 100755 --- a/airootfs/usr/share/sysrescue/bin/yay-prepare +++ b/airootfs/usr/share/sysrescue/bin/yay-prepare @@ -66,14 +66,14 @@ done pacman -Sy # reinstall all required packages -pacman -S "${REINSTALL[@]}" +pacman-faketime -S "${REINSTALL[@]}" # install base-devel group, but don't reinstall what we already have # we want to ask the user for confirmation, but don't give them a choice what to install # this isn't supported by pacman directly, so we need to get the group contents first and then install them BASE_DEVEL_PKGS=$(pacman -Sg base-devel | sed -e "s/^base-devel \(.*\)/\1/") -pacman -S --needed $BASE_DEVEL_PKGS git cmake +pacman-faketime -S --needed $BASE_DEVEL_PKGS git cmake useradd -m yay