@prover-coder-ai/docker-git 1.0.27 → 1.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5031,9 +5031,11 @@ const ensureClaudeCliReady = (projectDir, containerName) => pipe(
5031
5031
  claudeCliSelfHealScript
5032
5032
  ])
5033
5033
  ),
5034
- Effect.flatMap((healExitCode) => healExitCode === 0 ? Effect.log(`Claude CLI self-heal completed in ${containerName}.`) : Effect.logWarning(
5035
- `Claude CLI self-heal failed in ${containerName} (exit ${healExitCode}).`
5036
- )),
5034
+ Effect.flatMap(
5035
+ (healExitCode) => healExitCode === 0 ? Effect.log(`Claude CLI self-heal completed in ${containerName}.`) : Effect.logWarning(
5036
+ `Claude CLI self-heal failed in ${containerName} (exit ${healExitCode}).`
5037
+ )
5038
+ ),
5037
5039
  Effect.asVoid
5038
5040
  );
5039
5041
  }),