mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-10 02:14:17 +01:00
minor mandatory fix for git pull to work
This commit is contained in:
parent
b63144d90b
commit
4c13e0e5a1
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ def main():
|
|||
test_counts = []
|
||||
attachments = {}
|
||||
|
||||
proc = subprocess.Popen("python /opt/sqlmap/sqlmap.py --update", shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
proc = subprocess.Popen("cd /opt/sqlmap/ ; python /opt/sqlmap/sqlmap.py --update", shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
proc.wait()
|
||||
stdout, stderr = proc.communicate()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue