From a918161cd3f798ba2b95abb01bfc48d47e6cd7a1 Mon Sep 17 00:00:00 2001 From: Timur Shemsedinov Date: Sun, 28 Jan 2024 14:44:13 +0200 Subject: [PATCH] Fix skill links --- .github/src/check.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/src/check.js b/.github/src/check.js index 15a0ebf9..962e6655 100644 --- a/.github/src/check.js +++ b/.github/src/check.js @@ -289,10 +289,10 @@ const getTotal = (answered) => { const answered = skills[unit]; if (expected) { const todo = match(expected, answered); - todos.push(`\n## [${unit}](Skills/${unit}.md)\n`); + todos.push(`\n## [${unit}](/Skills/${unit}.md)\n`); todos.push(...todo); } - totals.push(`- [${unit}](Skills/${unit}.md)`); + totals.push(`- [${unit}](/Skills/${unit}.md)`); const total = getTotal(answered); totals.push(...total); }