Skip to content

Commit

Permalink
fix(developer): path separator for kmc-package
Browse files Browse the repository at this point in the history
Fixes #10027.
  • Loading branch information
mcdurdin committed Nov 23, 2023
1 parent 5c6fbcc commit b3b2825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion developer/src/kmc-package/src/compiler/kmp-compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export class KmpCompiler {
if(kps.Files && kps.Files.File) {
kmp.files = this.arrayWrap(kps.Files.File).map((file: KpsFile.KpsFileContentFile) => {
return {
name: file.Name.trim(),
name: file.Name.trim().replaceAll('\\','/'),
description: file.Description.trim(),
copyLocation: parseInt(file.CopyLocation, 10) || undefined
// note: we don't emit fileType as that is not permitted in kmp.json
Expand Down

0 comments on commit b3b2825

Please sign in to comment.