mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 12:26:38 -06:00
b41d5293b2
* refactor(mantis): replace Telegram proof compiler with frozen visible replay * refactor(mantis): let Codex own Telegram proof scenarios * fix(mantis): isolate proof publication * fix(mantis): bind baseline cache to revision * chore(mantis): remove stale scenario-designer wording * fix(mantis): align readable worktrees with trusted proof * fix(mantis): register proof collector tooling * refactor(mantis): keep collector functions private * fix(mantis): publish agent-selected Telegram proof * fix(mantis): trim proof media to final turn * fix(mantis): fence lanes before evidence collection * fix(mantis): verify lane termination before unlock
11 lines
279 B
Bash
Executable File
11 lines
279 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
for root in \
|
|
"$SESSION_ROOT" \
|
|
"$SUT_CREDENTIAL_DIR" \
|
|
"$CREDENTIAL_DIR"; do
|
|
[[ -n "$root" ]] || continue
|
|
[[ "$root" == /tmp/openclaw-mantis-*-${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT} ]]
|
|
sudo rm -rf --one-file-system "$root"
|
|
done
|