fix: use https://git.savannah.gnu.org/git/bash instead of https://github.com/bolinfest/bash#13057
Conversation
etraut-openai
approved these changes
Feb 27, 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.
Historically, we cloned the Bash repo from https://github.com/bminor/bash, but for whatever reason, it was removed at some point.
I had a local clone of it, so I pushed it to https://github.com/bolinfest/bash so that we could continue running our CI job. I did this in #9563, and as you can see, I did not tamper with the commit hash we used as the basis of this build.
Using a personal fork is not great, so this PR changes the CI job to use what appears to be considered the source of truth for Bash, which is https://git.savannah.gnu.org/git/bash.git.
Though in testing this out, it appears this Git server does not support the combination of
git clone --depth 1 https://git.savannah.gnu.org/git/bashandgit fetch --depth 1 origin a8a1c2fac029404d3f42cd39f5a20f24b6e4fe4b, as it fails with the following error:so unfortunately this means that we have to do a full clone instead of a shallow clone in our CI jobs, which will be a bit slower.
Also updated
codex-rs/shell-escalation/README.mdto reflect this change.