fix typo in mkdir cmd
This commit is contained in:
parent
a894ced767
commit
770e07f77c
2
init.lua
2
init.lua
|
@ -15,7 +15,7 @@ if fn.empty(fn.glob(install_path)) > 0 then
|
||||||
fn.system { "git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim", install_path }
|
fn.system { "git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim", install_path }
|
||||||
|
|
||||||
os.execute(
|
os.execute(
|
||||||
"mkdir " .. vim.fn.stdpath "data" .. "/site/pack/packer/start/base46_cache/compiled_themes/lua/base46_cache"
|
"mkdir -p " .. vim.fn.stdpath "data" .. "/site/pack/packer/start/base46_cache/compiled_themes/lua/base46_cache"
|
||||||
)
|
)
|
||||||
|
|
||||||
require("base46").compile()
|
require("base46").compile()
|
||||||
|
|
Loading…
Reference in New Issue