blob: 7f383d5818073c6a41d95aa87c851df1dbfefa77 [file] [log] [blame] [edit]
import os
BUILD_DIR = "build"
for current, dirs, files in os.walk(BUILD_DIR):
for file in files:
if file.endswith('.map'):
# remove the source map
os.remove(os.path.join(current, file))