prep 0.2.4

This commit is contained in:
Javanaut
2026-04-12 12:28:23 +02:00
parent fc9d94aeee
commit 2595bfe4f4

View File

@@ -122,7 +122,7 @@ auto_resolve_cleanup_conflicts() {
printf ' - %s\n' "${conflicted_path}"
done
git rm -r --ignore-unmatch "${AGENT_DEVELOPMENT_PATHS[@]}" >/dev/null
git rm -r -f --ignore-unmatch "${AGENT_DEVELOPMENT_PATHS[@]}" >/dev/null
mapfile -t remaining_conflicts < <(git diff --name-only --diff-filter=U)
if [ "${#remaining_conflicts[@]}" -ne 0 ]; then
@@ -360,7 +360,7 @@ if ! git rev-parse -q --verify MERGE_HEAD >/dev/null 2>&1; then
fi
printf 'Removing agent-development files from %s...\n' "${MAIN_BRANCH}"
git rm -r --ignore-unmatch "${AGENT_DEVELOPMENT_PATHS[@]}" >/dev/null
git rm -r -f --ignore-unmatch "${AGENT_DEVELOPMENT_PATHS[@]}" >/dev/null
if git diff --cached --quiet; then
fail "No staged changes are present after merging '${DEV_BRANCH}' into '${MAIN_BRANCH}'."