Fix path check

best_text_editor
Dallas Winger 2019-10-24 14:11:52 -04:00 committed by GitHub
parent a254aa73d4
commit a746d01726
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ function get_payload_path(){
sleep 2
main_menu
else
[[ -e $PAYLOADPATH ]] && printf "\n%s\n" "[!] $PAYLOADPATH does not exist" && sleep 2 && main_menu
[[ ! -e $PAYLOADPATH ]] && printf "\n%s\n" "[!] $PAYLOADPATH does not exist" && sleep 2 && main_menu
fi
}