We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a58c354 commit 8300644Copy full SHA for 8300644
tools/pkg/build.py
@@ -452,6 +452,13 @@ def windows(
452
if ret.returncode:
453
ctx.error(f"Failed to run '{' '.join(command)}'")
454
455
+ # DIGICERT asked me to add this for troubleshooting
456
+ command = ["smctl.exe", "healthcheck"]
457
+ ctx.info("Running Health Check...")
458
+ ret = ctx.run(*command, env=env, check=False)
459
+ if ret.returncode:
460
+ ctx.error(f"Failed to run '{' '.join(command)}'")
461
+
462
# command = ["smksp_cert_sync.exe"]
463
# ctx.info(f"Running: '{' '.join(command)}' ...")
464
# ret = ctx.run(*command, env=env, check=False)
0 commit comments