Fix mkdir on windows

pull/1729/head
Lucario387 1 year ago committed by Sidhanth Rathod
parent 9bd303feee
commit a2540ef183

@ -18,7 +18,7 @@ if fn.empty(fn.glob(install_path)) > 0 then
print "Cloning packer .."
fn.system { "git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim", install_path }
os.execute("mkdir -p " .. vim.g.base46_cache)
vim.fn.mkdir(vim.g.base46_cache, "p")
-- install plugins + compile their configs
vim.cmd "packadd packer.nvim"

Loading…
Cancel
Save