Skip to content

Commit

Permalink
support report links to file
Browse files Browse the repository at this point in the history
  • Loading branch information
raywill committed Jul 6, 2023
1 parent 4f15985 commit 6b6b590
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ var generateAtSomeoneReport = function(delta) {
}
if (matched) {
var day = fName.split('.')[0];
results += "# " + day + "\n\n" + dayResults + "\n\n";
results += "# [" + day + "](" + fileName + ")\n\n" + dayResults + "\n\n";
}
} catch {
// file may not exist
Expand Down Expand Up @@ -254,7 +254,7 @@ var generateReport = function(type, delta) {
matched = true;
}
if (matched) {
results += "# " + date + "\n\n" + dayResults + "\n\n";
results += "# [" + date + "](" + fileName + ")\n\n" + dayResults + "\n\n";
}
} catch {
// file may not exist
Expand Down

0 comments on commit 6b6b590

Please sign in to comment.