mirror of
https://github.com/Kron4ek/Conty
synced 2024-12-27 09:58:25 +01:00
Update ld.so.cache when updating Conty
ld.so.cache does not get updated automatically for some reason, so update it manually. Otherwise there may be problems with libraries (like https://github.com/Kron4ek/Conty/discussions/55)
This commit is contained in:
parent
425a9eb21f
commit
b01c65bd8a
1 changed files with 3 additions and 2 deletions
|
@ -12,7 +12,7 @@ if [ $EUID = 0 ] && [ -z "$ALLOW_ROOT" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
script_version="1.21.1"
|
||||
script_version="1.21.2"
|
||||
|
||||
# Full path to the script
|
||||
script_literal="${BASH_SOURCE[0]}"
|
||||
|
@ -43,7 +43,7 @@ mount_point="${working_dir}"/mnt
|
|||
# a problem with mounting the image due to an incorrectly calculated offset.
|
||||
|
||||
# The size of this script
|
||||
scriptsize=26209
|
||||
scriptsize=26238
|
||||
|
||||
# The size of the utils archive
|
||||
utilssize=2542302
|
||||
|
@ -487,6 +487,7 @@ fakeroot -- pacman-key --populate chaotic
|
|||
fakeroot -- pacman --noconfirm --overwrite "*" -Su 2>/dev/null
|
||||
fakeroot -- pacman --noconfirm -Runs ${pkgsremove} 2>/dev/null
|
||||
fakeroot -- pacman --noconfirm -S ${pkgsinstall} 2>/dev/null
|
||||
ldconfig -C /etc/ld.so.cache
|
||||
rm -f /var/cache/pacman/pkg/*
|
||||
pacman -Qn > /pkglist.x86_64.txt
|
||||
pacman -Qm >> /pkglist.x86_64.txt
|
||||
|
|
Loading…
Reference in a new issue