Skip to content

Commit ae11726

Browse files
committed
ellison/fix windows path issue
1 parent 4503bea commit ae11726

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/frameworks/spring-boot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ You can use 'mvn package' to package SpringBoot to a jar.`);
108108
if (_.endsWith(file, '.jar')) {
109109
const absFile = path.join(targetPath, file);
110110
const relative = path.relative(codeDir, absFile);
111-
jarFiles.push(relative);
111+
jarFiles.push(relative.split(path.sep).join('/'));
112112
}
113113
}
114114

0 commit comments

Comments
 (0)