From 243107d1368f3a5bbd9e18c28fb22dd214a51014 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 21 May 2026 23:50:42 +0000 Subject: [PATCH 1/2] Initial plan From e0fb1a21d887fe630318d4ad6e94cfec2758c5fa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 21 May 2026 23:53:36 +0000 Subject: [PATCH 2/2] fix: remove dead agent-volumes re-exports --- src/services/agent-volumes.ts | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/services/agent-volumes.ts b/src/services/agent-volumes.ts index 97d81cb90..d56cb4770 100644 --- a/src/services/agent-volumes.ts +++ b/src/services/agent-volumes.ts @@ -4,19 +4,7 @@ import execa from 'execa'; import { SslConfig } from '../host-env'; import { logger } from '../logger'; import { WrapperConfig } from '../types'; -import { - normalizeDockerHostPathPrefix, - translateBindMountHostPath, - applyHostPathPrefixToVolumes, -} from './host-path-prefix'; - -// Re-export for backwards compatibility — call sites that previously imported -// these helpers from agent-volumes.ts continue to work. -export { - normalizeDockerHostPathPrefix, - translateBindMountHostPath, - applyHostPathPrefixToVolumes, -}; +import { applyHostPathPrefixToVolumes } from './host-path-prefix'; // ─── Agent Volumes ────────────────────────────────────────────────────────────