Don't normalize package list paths. That strips meaningful characters.
This commit is contained in:
parent
9f0aae0432
commit
1ef7e49350
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ proc parseConfig*(): Config =
|
|||
if currentPackageList.path != "":
|
||||
raise newException(NimbleError, "Attempted to specify more than one `path` for the same package list.")
|
||||
else:
|
||||
currentPackageList.path = e.value.normalize
|
||||
currentPackageList.path = e.value
|
||||
else: assert false
|
||||
else:
|
||||
raise newException(NimbleError, "Unable to parse config file:" &
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue