Skip to content

Commit

Permalink
fix test (win)
Browse files Browse the repository at this point in the history
Signed-off-by: qGYdXbY2 <[email protected]>
  • Loading branch information
qGYdXbY2 committed Jan 20, 2025
1 parent 818edf2 commit a430120
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public CompilationStepGraph compile(Job job) {
job.getId(),
((DatasetDescription.Space<?>) job.getSource()).getFilters(),
((DatasetDescription.Space<?>) job.getSource()).getVersionRef(),
"Space" );
"space" );

}
}
2 changes: 1 addition & 1 deletion xyz-util/src/main/java/com/here/xyz/util/db/pg/Script.java
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ private static List<String> scanResourceFolder(ScriptResourcePath scriptResource
files.add(file);
return ensureInitScriptIsFirst(files.stream()
.filter(fileName -> fileName.endsWith(fileSuffix))
.map(fileName -> resourceFolder + File.separator + fileName)
.map(fileName -> resourceFolder + "/" + fileName) // script.scriptResourcePath always stored as unix path
.toList(), scriptResourcePath.initScript());
}

Expand Down

0 comments on commit a430120

Please sign in to comment.