diff options
author | christianchiarulli <[email protected]> | 2021-07-08 17:43:42 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-08 17:43:42 -0400 |
commit | 18aae15201a3d1bebab982d36173fc1049a9b1b1 (patch) | |
tree | be0ed65f9c90211fae17b7f9bebb6792295171cd | |
parent | a6c06008aa6931348510b920698455757dbea50a (diff) |
write to log file
-rwxr-xr-x | utils/installer/install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/installer/install.sh b/utils/installer/install.sh index 34c8f58b..72d3aa7e 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -103,11 +103,11 @@ cloneconfig() { git clone --branch master https://github.com/ChristianChiarulli/lunarvim.git ~/.config/nvim mv $HOME/.config/nvim/utils/installer/lv-config.example.lua $HOME/.config/nvim/lv-config.lua nvim --headless \ - +'autocmd User PackerComplete sleep 100m | qall' \ - +PackerInstall >/dev/null + +'autocmd User PackerComplete sleep 100m | write ~/.config/nvim/.packer-install.log | qall' \ + +PackerInstall nvim --headless \ +'autocmd User PackerComplete sleep 10m | qall' \ - +PackerSync >/dev/null + +PackerSync echo -e "\nCompile Complete" } |