Clarified variable
This commit is contained in:
4
cloak.py
4
cloak.py
@@ -33,8 +33,8 @@ s.close()
|
|||||||
|
|
||||||
|
|
||||||
def check_external_dependency(command, help=None):
|
def check_external_dependency(command, help=None):
|
||||||
check_msfvenom = os.system('command -v %s > /dev/null' % command)
|
check_command = os.system('command -v %s > /dev/null' % command)
|
||||||
if check_msfvenom != 0:
|
if check_command != 0:
|
||||||
print '%s%s Couldn\'t find %s!' % (bad, red, command)
|
print '%s%s Couldn\'t find %s!' % (bad, red, command)
|
||||||
if help:
|
if help:
|
||||||
print '%s %s' % (info, help)
|
print '%s %s' % (info, help)
|
||||||
|
|||||||
Reference in New Issue
Block a user