Skip to content
Merged
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
4 changes: 3 additions & 1 deletion cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,9 @@ func runWithoutCache(cfg *config.Config, proj *project.Info, wm *project.Working
fmt.Print(output)

// Write to display cache so the UserPromptSubmit hook (show-cache) can display it.
_ = writeDisplayCache(output)
if err := writeDisplayCache(output); err != nil {
logFn("[warn] display cache write error: %v", err)
}

// Write activity log entry (non-fatal on error).
_ = activitylog.Append(activitylog.Entry{
Expand Down