You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
381 B
Python
15 lines
381 B
Python
#!/usr/bin/env python3
|
|
|
|
from __future__ import print_function
|
|
import os, sys
|
|
|
|
build_path = sys.argv[1]
|
|
if os.path.exists(build_path):
|
|
for (path, dir, files) in os.walk(build_path):
|
|
for cur_file in files:
|
|
if cur_file.endswith('index.lock'):
|
|
path_to_file = os.path.join(path, cur_file)
|
|
print('deleting %s' % path_to_file)
|
|
os.remove(path_to_file)
|
|
|