delete asm files

main
serr 2025-03-16 18:59:23 +03:00
parent d6beddbfbd
commit 76f7be48b1
2 changed files with 3 additions and 1 deletions

View File

@ -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__":