We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a532a40 commit 3371e51Copy full SHA for 3371e51
cmds/cmd_package.py
@@ -683,8 +683,11 @@ def package_update():
683
else:
684
print("\nAll the selected packages have been downloaded successfully.\n")
685
686
- update_latest_packages(read_back_pkgs_json, bsp_packages_path)
687
-
+ try:
+ update_latest_packages(read_back_pkgs_json, bsp_packages_path)
688
+ except KeyboardInterrupt:
689
+ flag = 0
690
+
691
if flag:
692
print ("Operation completed successfully.")
693
0 commit comments