Merge pull request #391 from subsetpark/bugfix-path-values

Don't normalize package list paths. That strips meaningful characters.
This commit is contained in:
Dominik Picheta 2017-08-13 22:44:00 +01:00 committed by GitHub
commit 788f93a4e7

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