Merge pull request #45 from polarmutex/fix-cache-duplication

fix the config having both expanded and non expanded
This commit is contained in:
ThePrimeagen 2021-03-23 20:38:23 -06:00 committed by GitHub
commit 2d0cb2aabb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,6 +85,7 @@ local function expand_dir(config)
for k in pairs(projects) do
local expanded_path = Path.new(k):expand()
projects[expanded_path] = projects[k]
projects[k] = nil
end
return config