mirror of https://github.com/ARMmbed/mbed-os.git
[PROJECT.py] removed the sys.exit() after cleaning
parent
0791533ef2
commit
f6117f8daf
|
@ -56,13 +56,11 @@ if __name__ == '__main__':
|
||||||
if options.list_tests is True:
|
if options.list_tests is True:
|
||||||
print '\n'.join(map(str, sorted(TEST_MAP.values())))
|
print '\n'.join(map(str, sorted(TEST_MAP.values())))
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
# Clean Export Directory
|
# Clean Export Directory
|
||||||
if options.clean:
|
if options.clean:
|
||||||
if exists(EXPORT_DIR):
|
if exists(EXPORT_DIR):
|
||||||
rmtree(EXPORT_DIR)
|
rmtree(EXPORT_DIR)
|
||||||
sys.exit()
|
|
||||||
|
|
||||||
|
|
||||||
# Target
|
# Target
|
||||||
if options.mcu is None :
|
if options.mcu is None :
|
||||||
|
|
Loading…
Reference in New Issue