From 43f6e5331ba88e82be4e5578a1ba8b1795873784 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Sat, 2 Nov 2024 13:21:55 +0530 Subject: [PATCH] fish: functions/vb: Remove build directory before compiling --- fish/.config/fish/functions/vb.fish | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/fish/.config/fish/functions/vb.fish b/fish/.config/fish/functions/vb.fish index 3f2ca82..f5a1d13 100644 --- a/fish/.config/fish/functions/vb.fish +++ b/fish/.config/fish/functions/vb.fish @@ -1,5 +1,3 @@ function vb --description 'Build helper for neovim' - make distclean && make CC=gcc CMAKE_BUILD_TYPE=Release && \ - doas rm -rf /usr/local/share/nvim/runtime/ && \ - doas make install + doas rm -rf build && make distclean && make CC=gcc CMAKE_BUILD_TYPE=Release && doas rm -rf /usr/local/share/nvim/runtime/ && doas make install end