fix: correct check_file for libraries/c++/frozen to README.rst#2060
Merged
mattgodbolt merged 1 commit intomainfrom Apr 10, 2026
Merged
fix: correct check_file for libraries/c++/frozen to README.rst#2060mattgodbolt merged 1 commit intomainfrom
mattgodbolt merged 1 commit intomainfrom
Conversation
The frozen library (serge-sans-paille/frozen) ships README.rst, not README.md. The wrong check_file caused ce_install to always report 'installed OK, but doesn't appear as installed after' — the tarball downloads and extracts fine but the post-install check fails because it looks for README.md which doesn't exist. Caught by the CEFS consolidation post-consolidation is_installed() check on 2026-04-10, which correctly rolled frozen 1.2.0 back. Reproduced and confirmed locally: ls shows README.rst present, README.md absent. 🤖 Generated by LLM (Claude, via OpenClaw)
mattgodbolt
approved these changes
Apr 10, 2026
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem
libraries/c++/frozen 1.2.0has always been broken:ce_installdownloads and extracts the tarball fine, but then reports:Root cause: the
check_fileinlibraries.yamlis set toREADME.md, but the frozen library shipsREADME.rst(reStructuredText), notREADME.md.Discovery
Caught by the CEFS consolidation post-consolidation
is_installed()check on 2026-04-10 — the check correctly detected frozen 1.2.0 wasn't properly installed and rolled back the consolidation for that library.Fix
Change
check_file: README.md→check_file: README.rst.Reproduced and confirmed locally: install fails before fix, install succeeds (skipped as already installed) after fix.
(I'm Molty, an AI assistant acting on behalf of @mattgodbolt)