diff options
author | aktersnurra <grydholm@kth.se> | 2022-04-30 18:30:21 +0200 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2022-04-30 18:30:21 +0200 |
commit | abd98cb0f461b4e102e40918954fd9f6b5e91f54 (patch) | |
tree | 1384861d8c124ea6531cf16711a5aa94420344a9 | |
parent | eb6fc2918c837e3ab12f8cea7bc23112dc6debed (diff) |
fix(install script): remove intermediate output
-rwxr-xr-x | install.sh | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -9,5 +9,7 @@ luarocks list | grep "fennel" >/dev/null 2>&1 || (echo "fennel is not installed" && exit 1) # Bootstrap installment -nvim --headless +qa && -nvim --headless -c "autocmd User PackerComplete quitall" +nvim --headless +qa >/dev/null 2>&1 && +nvim --headless -c "autocmd User PackerComplete quitall" >/dev/null 2>&1 && +echo "Successfully bootstrapped the config!" || +(echo "Bootstrapping failed..." && exit 1) |