config_tools: add Board Inspector tool success message

add Board Inspector tool success message after users were successful
creating the board configuration file.

Tracked-On: #6670
Signed-off-by: Kunhui-Li <kunhuix.li@intel.com>
This commit is contained in:
Kunhui-Li 2021-10-14 17:29:05 +08:00 committed by wenlingz
parent dec8d7e22f
commit 9f5ef31c9f

View File

@ -60,6 +60,7 @@ def main(board_name, board_xml, args):
# Finally overwrite the output with the updated XML # Finally overwrite the output with the updated XML
board_etree.write(board_xml, pretty_print=True) board_etree.write(board_xml, pretty_print=True)
print("{} saved successfully!".format(board_xml))
except subprocess.CalledProcessError as e: except subprocess.CalledProcessError as e:
print(e) print(e)