change generation to use same paths on unix vs windows

This commit is contained in:
Mikayla Fischler 2023-04-06 12:49:23 -04:00
parent 6e1edce8e7
commit 40b11dbfd3

View File

@ -7,7 +7,7 @@ def list_files(path):
for (root, dirs, files) in os.walk(path):
for f in files:
list.append(root[2:] + "/" + f)
list.append((root[2:] + "/" + f).replace('\\','/'))
return list