@prover-coder-ai/docker-git 1.0.52 → 1.0.54
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.
|
@@ -6010,6 +6010,7 @@ var runCreateProject = (path, command) => Effect.gen(function* (_) {
|
|
|
6010
6010
|
}))));
|
|
6011
6011
|
const hasAgent = finalConfig.agentMode !== void 0;
|
|
6012
6012
|
const waitForAgent = hasAgent && (finalConfig.agentAuto ?? false);
|
|
6013
|
+
yield* _(autoSyncState(`chore(state): update ${formatStateSyncLabel(projectConfig.repoUrl)}`));
|
|
6013
6014
|
yield* _(runDockerUpIfNeeded(resolvedOutDir, projectConfig, {
|
|
6014
6015
|
runUp: command.runUp,
|
|
6015
6016
|
waitForClone: command.waitForClone,
|
|
@@ -6019,7 +6020,6 @@ var runCreateProject = (path, command) => Effect.gen(function* (_) {
|
|
|
6019
6020
|
}));
|
|
6020
6021
|
if (command.runUp) yield* _(logDockerAccessInfo(resolvedOutDir, projectConfig));
|
|
6021
6022
|
yield* _(maybeCleanupAfterAgent(waitForAgent, resolvedOutDir));
|
|
6022
|
-
yield* _(autoSyncState(`chore(state): update ${formatStateSyncLabel(projectConfig.repoUrl)}`));
|
|
6023
6023
|
yield* _(maybeOpenSsh(command, hasAgent, waitForAgent, projectConfig));
|
|
6024
6024
|
}).pipe(Effect.asVoid);
|
|
6025
6025
|
var createProject = (command) => Path.Path.pipe(Effect.flatMap((path) => runCreateProject(path, command)));
|