Fix meson sdb generation

This commit is contained in:
xarkes 2017-09-14 09:20:25 +02:00
parent 1314905e81
commit 9a8250dbc8

View File

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