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 all commits
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
6 changes: 5 additions & 1 deletion config/setup.sh
100755 → 100644
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