Skip to content

Commit 4ea16d1

Browse files
committed
Show results folder path prominently in output summary
1 parent 889c7a8 commit 4ea16d1

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

cmd/output.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ func displayOutputSummary(results *models.Results, outDir string, allURLs []stri
233233
fmt.Fprintf(os.Stderr, "\n━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n")
234234
fmt.Fprintf(os.Stderr, "📊 ANALYSIS RESULTS\n")
235235
fmt.Fprintf(os.Stderr, "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n")
236-
236+
237237
// App Info Section
238238
if pkg != "" {
239239
fmt.Fprintf(os.Stderr, "📦 APP INFORMATION\n")
@@ -271,7 +271,7 @@ func displayOutputSummary(results *models.Results, outDir string, allURLs []stri
271271
{"🔗 Services", len(results.Services)},
272272
{"🎨 Assets", assetCount},
273273
}
274-
274+
275275
// Print stats in two columns
276276
fmt.Fprintf(os.Stderr, "📊 FINDINGS SUMMARY\n")
277277
printed := 0
@@ -405,7 +405,9 @@ func displayOutputSummary(results *models.Results, outDir string, allURLs []stri
405405
}
406406

407407
fmt.Fprintf(os.Stderr, "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n")
408-
fmt.Fprintf(os.Stderr, "💡 Next: Open summary.md to review findings\n")
408+
fmt.Fprintf(os.Stderr, "� Results saved to:\n")
409+
fmt.Fprintf(os.Stderr, " %s\n", outDir)
410+
fmt.Fprintf(os.Stderr, "💡 Start with: summary.md\n")
409411
fmt.Fprintf(os.Stderr, "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\n\n")
410412
}
411413

0 commit comments

Comments
 (0)