1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-10-29 22:17:23 +01: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
No known key found for this signature in database
GPG Key ID: 6F24DA54DA3967CF

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