fish: functions/vb: Do not run the next command on failure

This commit is contained in:
Sanchayan Maity 2024-04-03 10:41:44 +05:30
parent d9fdf69a78
commit 0f8e52bae1
Signed by: sanchayanmaity
GPG Key ID: 6F6A0609C12038F3
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
function vb --description 'Build helper for neovim'
make distclean && make CC=gcc CMAKE_BUILD_TYPE=Release
doas rm -rf /usr/local/share/nvim/runtime/
make distclean && make CC=gcc CMAKE_BUILD_TYPE=Release && \
doas rm -rf /usr/local/share/nvim/runtime/ && \
doas make install
end