delete asm files
parent
d6beddbfbd
commit
76f7be48b1
Binary file not shown.
|
@ -8,10 +8,12 @@ def make_i64(ida_executable, infile, idbfile):
|
|||
|
||||
print(f"\033[92mAnalysing {infile}...\033[0m")
|
||||
|
||||
cmd = [ida_executable, "-B", "-o%s" % idbfile, infile]
|
||||
cmd = [ida_executable, "-B", infile]
|
||||
|
||||
process = subprocess.Popen(cmd, shell=True)
|
||||
process.wait()
|
||||
# там почему то создается ненужный asm файл
|
||||
os.remove(infile+'.asm')
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
|
|
Loading…
Reference in New Issue