1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

fix(cli): paths normalization to support Windows

This commit is contained in:
Divlo
2021-10-16 15:20:15 +02:00
parent c682b174f3
commit 953323781c

View File

@ -116,7 +116,7 @@ export class Solution implements SolutionOptions {
}
return solutions.map((solution) => {
const [, challengeName, , programmingLanguageName, solutionName] =
solution.split('/')
solution.replaceAll('\\', '/').split('/')
return new Solution({
challenge: new Challenge({
name: challengeName