Don't normalize package list paths. That strips meaningful characters.

This commit is contained in:
Zach Smith 2017-08-13 17:40:50 -04:00
commit 1ef7e49350

View file

@ -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:" &