Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

fix #460

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

fix #460

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions config/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
## Can be called by doing: "Veil.py --setup"

## Global variables
os="$( awk -F '=' '/^ID=/ {print $2}' /etc/os-release 2>&- )"
if [ "$( awk -F '=' '/^NAME=/ {print $2}' /etc/os-release 2>&- )" == "\"Parrot OS\"" ]; then
os="parrot"
else
os="$( awk -F '=' '/^ID=/ {print $2}' /etc/os-release 2>&- )"
fi

if [ "${os}" == "arch" ] \
|| [ "${os}" == "manjaro" ]\
Expand Down Expand Up @@ -599,7 +603,6 @@ func_package_deps(){
echo -e " ${RED}[ERROR] ${msg}${RESET}\n"
fi
elif [ "${os}" == "arch" ] \
|| [ "${os}" == "blackarch" ] \
|| [ "${os}" == "blackarch" ]; then
echo -e "\n\n [*] ${YELLOW}Installing Wine 32-bit on x86_64 System (via PACMAN)${RESET}\n"
if grep -Fxq "#[multilib]" /etc/pacman.conf; then
Expand Down