blob: a423a2f65a0d0b7bd40fc9eb7a0810c8a2d1e59a [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))