From 1ef7e493500ae6d66dcf37cef38686bb6948bee9 Mon Sep 17 00:00:00 2001 From: Zach Smith Date: Sun, 13 Aug 2017 17:40:50 -0400 Subject: [PATCH] Don't normalize package list paths. That strips meaningful characters. --- src/nimblepkg/config.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nimblepkg/config.nim b/src/nimblepkg/config.nim index ce62ef8..45f8154 100644 --- a/src/nimblepkg/config.nim +++ b/src/nimblepkg/config.nim @@ -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:" &