Skip to content

Commit a918161

Browse files
committed
Fix skill links
1 parent 81ed98c commit a918161

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/src/check.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,10 @@ const getTotal = (answered) => {
289289
const answered = skills[unit];
290290
if (expected) {
291291
const todo = match(expected, answered);
292-
todos.push(`\n## [${unit}](Skills/${unit}.md)\n`);
292+
todos.push(`\n## [${unit}](/Skills/${unit}.md)\n`);
293293
todos.push(...todo);
294294
}
295-
totals.push(`- [${unit}](Skills/${unit}.md)`);
295+
totals.push(`- [${unit}](/Skills/${unit}.md)`);
296296
const total = getTotal(answered);
297297
totals.push(...total);
298298
}

0 commit comments

Comments
 (0)