Raikia / FiercePhish

FiercePhish is a full-fledged phishing framework to manage all phishing engagements. It allows you to track separate phishing campaigns, schedule sending of emails, and much more.
https://github.com/Raikia/FiercePhish/wiki
GNU General Public License v3.0
1.29k stars 253 forks source link

bug in install.sh #90

Open Phil01290 opened 3 years ago

Phil01290 commented 3 years ago

script line 352 : total=$(($mem+$swap))

unexpected error cause of "+"

should be changed to :

total=$(($mem$swap))

Then works like a charm/