🥇 export from upstream (1865b00)

This commit is contained in:
sandcage-export
2026-05-22 02:05:16 +02:00
parent bef6fc30c5
commit 061db28096
+1 -1
View File
@@ -72,7 +72,7 @@ def remove_excluded_paths(target: Path, exclude: list[str]) -> None:
def _run(cmd: list[str], cwd: Path, check: bool = True) -> subprocess.CompletedProcess: def _run(cmd: list[str], cwd: Path, check: bool = True) -> subprocess.CompletedProcess:
result = subprocess.run(cmd, cwd=cwd, check=False, text=True, capture_output=True) result = subprocess.run(cmd, cwd=cwd, check=False, capture_output=True, encoding="utf-8", errors="replace")
if check and result.returncode != 0: if check and result.returncode != 0:
detail = (result.stderr or result.stdout or "").strip() detail = (result.stderr or result.stdout or "").strip()
if detail: if detail: