mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 23:50:40 +00:00
Fix meson sdb generation
This commit is contained in:
parent
1314905e81
commit
9a8250dbc8
@ -30,7 +30,7 @@ def get_base_extension(f):
|
||||
""" file.sdb.txt => file, .txt """
|
||||
n = f.split('.')
|
||||
if len(n) == 1: return n[0], ''
|
||||
return n[0], n[-1]
|
||||
return n[0], '.'.join(n[1:])
|
||||
|
||||
def handle_folder(folder):
|
||||
""" Convert each suitable file inside specified folder to sdb file """
|
||||
|
Loading…
Reference in New Issue
Block a user