From 184ad57ebcbef921f62cfeb67fd04789c425ffac Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Fri, 15 Dec 2023 05:29:36 -0500 Subject: [PATCH] archlinux needs libs/headers (#215) * archlinux needs libs/headers * and libxcrypt-compat https://unix.stackexchange.com/questions/691479/how-to-deal-with-missing-libcrypt-so-1-on-arch-linux https://github.com/pkgxdev/pantry/actions/runs/7213672966/job/19654286785 --- installer.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/installer.sh b/installer.sh index e217487d..80959fa5 100755 --- a/installer.sh +++ b/installer.sh @@ -37,6 +37,8 @@ _install_pre_reqs() { esac elif test -f /etc/fedora-release; then $SUDO yum --assumeyes install libatomic + elif test -f /etc/arch-release; then + $SUDO pacman --noconfirm -Sy gcc-libs libc++ libatomic_ops libxcrypt-compat fi }