mirror of https://github.com/ARMmbed/mbed-os.git
Remove needless _exit call
parent
3617101154
commit
7b1cb6ddba
|
@ -59,7 +59,7 @@ if __name__ == '__main__':
|
||||||
params, macros, features = get_config(options.source_dir, target, toolchain)
|
params, macros, features = get_config(options.source_dir, target, toolchain)
|
||||||
if not params and not macros:
|
if not params and not macros:
|
||||||
print("No configuration data available.")
|
print("No configuration data available.")
|
||||||
_exit(0)
|
sys.exit(0)
|
||||||
if params:
|
if params:
|
||||||
print("Configuration parameters")
|
print("Configuration parameters")
|
||||||
print("------------------------")
|
print("------------------------")
|
||||||
|
|
Loading…
Reference in New Issue