fix: make dev tools executable

This commit is contained in:
2026-07-20 20:55:57 +02:00
parent cb2301d709
commit 0af5a8b00f
3 changed files with 19 additions and 5 deletions
+4 -2
View File
@@ -3,7 +3,9 @@
This directory supplies the ready-made `python` and `dotnet` scripts. They are not reserved:
modify, replace, or remove them like any other script. Place other trusted executable install
scripts here and add the desired file names to `AGENTCI_INSTALL_SCRIPTS`. Compose mounts the
directory read-only at `/etc/agentci/install-scripts`.
directory read-only at `/etc/agentci/install-scripts`. Executable files run directly; files without
executable mode run as POSIX shell scripts through `/bin/sh` so bind mounts do not depend on host
file-mode preservation.
Scripts run from the cloned repository with a sanitized environment. They receive:
@@ -19,4 +21,4 @@ not persist into implementation turns.
The configured scripts run in list order after the repository is cloned (or an existing agent PR
branch is synchronized) and before the first implementation turn for `implement`, `iterate`, and
`fix`. They do not rerun between implementation and review-revision turns within one job. Scripts
must be executable, idempotent, and must not expect AgentCI or Gitea credentials.
must be idempotent and must not expect AgentCI or Gitea credentials.