diff --git a/.github/workflows/shell-tool-mcp.yml b/.github/workflows/shell-tool-mcp.yml index 1a36d7190..76658c61b 100644 --- a/.github/workflows/shell-tool-mcp.yml +++ b/.github/workflows/shell-tool-mcp.yml @@ -146,9 +146,8 @@ jobs: shell: bash run: | set -euo pipefail - git clone --depth 1 https://github.com/bolinfest/bash /tmp/bash + git clone https://git.savannah.gnu.org/git/bash /tmp/bash cd /tmp/bash - git fetch --depth 1 origin a8a1c2fac029404d3f42cd39f5a20f24b6e4fe4b git checkout a8a1c2fac029404d3f42cd39f5a20f24b6e4fe4b git apply "${GITHUB_WORKSPACE}/shell-tool-mcp/patches/bash-exec-wrapper.patch" ./configure --without-bash-malloc @@ -188,9 +187,8 @@ jobs: shell: bash run: | set -euo pipefail - git clone --depth 1 https://github.com/bolinfest/bash /tmp/bash + git clone https://git.savannah.gnu.org/git/bash /tmp/bash cd /tmp/bash - git fetch --depth 1 origin a8a1c2fac029404d3f42cd39f5a20f24b6e4fe4b git checkout a8a1c2fac029404d3f42cd39f5a20f24b6e4fe4b git apply "${GITHUB_WORKSPACE}/shell-tool-mcp/patches/bash-exec-wrapper.patch" ./configure --without-bash-malloc diff --git a/codex-rs/shell-escalation/README.md b/codex-rs/shell-escalation/README.md index 38c79d834..cea59601f 100644 --- a/codex-rs/shell-escalation/README.md +++ b/codex-rs/shell-escalation/README.md @@ -20,7 +20,7 @@ decision to the shell-escalation protocol over a shared file descriptor (specifi We carry a small patch to `execute_cmd.c` (see `patches/bash-exec-wrapper.patch`) that adds support for `EXEC_WRAPPER`. The original commit message is “add support for BASH_EXEC_WRAPPER” and the patch applies cleanly to `a8a1c2fac029404d3f42cd39f5a20f24b6e4fe4b` from https://github.com/bminor/bash. To rebuild manually: ```bash -git clone https://github.com/bminor/bash +git clone https://git.savannah.gnu.org/git/bash git checkout a8a1c2fac029404d3f42cd39f5a20f24b6e4fe4b git apply /path/to/patches/bash-exec-wrapper.patch ./configure --without-bash-malloc