mirror of https://github.com/sbt/sbt.git
Use raw method not to unescape special characters. Fixes #478
This commit is contained in:
parent
919ac33c1a
commit
47c9645892
|
|
@ -21,7 +21,7 @@ class RichURI(uri: URI)
|
|||
else
|
||||
uri
|
||||
|
||||
def hasMarkerScheme = new URI(uri.getSchemeSpecificPart).getScheme ne null
|
||||
def hasMarkerScheme = new URI(uri.getRawSchemeSpecificPart).getScheme ne null
|
||||
|
||||
def withoutMarkerScheme =
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue