Skip to content

Commit 5ecb395

Browse files
author
Zhen Li
committed
For windows os, replace all '\\' with '/' in package uri given that '\\' is not a valid char for uri.
1 parent ed30476 commit 5ecb395

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver/src/test/java/org/neo4j/driver/v1/util/Neo4jWindowsInstaller.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public int stopNeo4j() throws IOException
6565
@Override
6666
String neo4jPackageUrl()
6767
{
68-
String url = System.getProperty( "packageUri", winPackageUrl );
68+
String url = System.getProperty( "packageUri", winPackageUrl ).replace('\\', '/');
6969
return URI.create( url ).toString();
7070
}
7171

0 commit comments

Comments
 (0)