Skip to content
Snippets Groups Projects
Commit f8a39e3b authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

tools/make-frozen.py: Handle trailing slash in argument more reliably.

parent 0e6c89a5
Branches
No related tags found
No related merge requests found
......@@ -26,16 +26,14 @@ def module_name(f):
modules = []
root = sys.argv[1]
root = sys.argv[1].rstrip("/")
root_len = len(root)
if root[-1] != "/":
root_len += 1
for dirpath, dirnames, filenames in os.walk(root):
for f in filenames:
fullpath = dirpath + "/" + f
st = os.stat(fullpath)
modules.append((fullpath[root_len:], st))
modules.append((fullpath[root_len + 1:], st))
print("#include <stdint.h>")
print("const uint16_t mp_frozen_sizes[] = {")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment