Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
533 changes: 525 additions & 8 deletions cortex/cli.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions cortex/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __init__(

self.steps = [
InstallationStep(
command=cmd, description=descriptions[i] if descriptions else f"Step {i+1}"
command=cmd, description=descriptions[i] if descriptions else f"Step {i + 1}"
)
for i, cmd in enumerate(commands)
]
Expand Down Expand Up @@ -250,7 +250,7 @@ def execute(self) -> InstallationResult:
self._rollback()

total_duration = time.time() - start_time
self._log(f"Installation failed at step {i+1}")
self._log(f"Installation failed at step {i + 1}")

return InstallationResult(
success=False,
Expand Down
Loading
Loading