[PROJECT.py] removed the sys.exit() after cleaning

pull/563/head
Olaf Hagendorf 2014-10-16 12:45:46 +02:00
parent 0791533ef2
commit f6117f8daf
1 changed files with 1 additions and 3 deletions

View File

@ -56,13 +56,11 @@ if __name__ == '__main__':
if options.list_tests is True:
print '\n'.join(map(str, sorted(TEST_MAP.values())))
sys.exit()
# Clean Export Directory
if options.clean:
if exists(EXPORT_DIR):
rmtree(EXPORT_DIR)
sys.exit()
# Target
if options.mcu is None :