This repository was archived by the owner on Aug 8, 2026. It is now read-only.
windows: the verify command returned nothing and said so nowhere - #73
Merged
Conversation
The manifest read-back added yesterday uses `Get-Content | ConvertFrom-Json` without -Raw. On Windows PowerShell 5.1, which is what ships with Windows and what the producer box runs, Get-Content emits an array of lines and 5.1's ConvertFrom-Json does not reassemble them the way PowerShell 7 does. The properties come back empty, so the command prints its column headers, prints no values, and raises no error. Measured on the producer box on 2026-08-05 against a panel that had published correctly (49 markets, report week 2026-07-28, the §E4 pins to the market), so the only thing broken was the check. That failure mode is worse than a missing command. A blank result reads as "checked it" rather than as a failure to look, which is the same class of problem as the short panel two sections further down: well-formed output that nothing downstream would question. Rewritten to assign once with -Raw and read the three fields off the object, and the reason -Raw is load-bearing is stated inline so nobody tidies it away. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The manifest read-back added in #72 uses
Get-Content | ConvertFrom-Jsonwithout-Raw. On Windows PowerShell 5.1, which is what ships with Windows and what the producer box runs,Get-Contentemits an array of lines and 5.1'sConvertFrom-Jsondoes not reassemble them the way PowerShell 7 does. The properties come back empty, so the command prints its column headers, prints no values, and raises no error.Measured on the producer box on 2026-08-05 against a panel that had published correctly (49 markets, report week 2026-07-28, the
2026-08-05 §E4pins to the market), so the only thing broken was the check itself.That failure mode is worse than a missing command. A blank result reads as "checked it" rather than as a failure to look, which is the same class of problem as the short panel two sections further down: well-formed output that nothing downstream would question.
Rewritten to assign once with
-Rawand read the three fields off the object, with the reason-Rawis load-bearing stated inline so nobody tidies it away.Docs only. No
src/ortests/change, so the four suite totals inCLAUDE.mdare unmoved.🤖 Generated with Claude Code