File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 126126 _ (println (count external-or-missing-links) " reported links without redirects." )
127127 _ (println " Checking if the missing links are live on https://metabase.com ..." )
128128 out (check-broken-links external-or-missing-links)]
129- (prn [" htmlproofer links:" (set htmlproofer-links)])
130- (prn [" redirects:" (set redirects)])
131- (prn [" external-or-missing-links:" (set external-or-missing-links)])
129+ (prn [" htmlproofer links:" ]
130+ (doseq [l (sort (set htmlproofer-links))]
131+ (println " " l)))
132+ (prn [" redirects:" ]
133+ (doseq [l (sort (set redirects))]
134+ (println " " l)))
135+ (prn [" external-or-missing-links:" ]
136+ (doseq [l (sort (set external-or-missing-links))]
137+ (println " " l)))
132138
133139 (if (zero? (:broken-count out))
134140 (do
You can’t perform that action at this time.
0 commit comments