Skip to content

Commit

Permalink
Merge pull request #1686 from BishopFox/fix-install-script
Browse files Browse the repository at this point in the history
Fixing install script for Arch
  • Loading branch information
moloch-- authored May 16, 2024
2 parents 130b5f9 + f2bb628 commit ffd2fa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/sliver-docs/public/install
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ elif command -v yum &> /dev/null; then # Redhat-based OS (Fedora, CentOS, RHEL)
INSTALLER=(yum -y)
elif command -v pacman &>/dev/null; then # Arch-based (Manjaro, Garuda, Blackarch)
echo "Installing dependencies using pacman..."
pacman -S mingw-w64-gcc mingw-w64-binutils mingw-w64-headers
INSTALLER=(pacman -S)
pacman --noconfirm -S mingw-w64-gcc mingw-w64-binutils mingw-w64-headers
INSTALLER=(pacman --noconfirm -S)
else
echo "Unsupported OS, exiting"
exit
Expand Down

0 comments on commit ffd2fa6

Please sign in to comment.