From 875e789e4ffa359ad612ded7a1a6324675a54134 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 31 May 2023 20:28:33 +0100 Subject: [PATCH] Use new syntax for make commands that are allowed to fail --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 26f1956..1019e1d 100644 --- a/Makefile +++ b/Makefile @@ -9,11 +9,11 @@ default: fc-list | grep -iE "(fira.*code)*(nerd.*font)" > /dev/null || make firacode clean: - rm -rf $(HOME)/.local/share/nvim || continue - rm -rf $(HOME)/.local/state/nvim || continue - rm $(BIN_DIR)/nvim || continue - rm $(BIN_DIR)/direnv || continue - rm -rf $(FONTS_DIR)/FiraCode || continue + -rm -rf $(HOME)/.local/share/nvim + -rm -rf $(HOME)/.local/state/nvim + -rm $(BIN_DIR)/nvim + -rm $(BIN_DIR)/direnv + -rm -rf $(FONTS_DIR)/FiraCode nvim: $(BIN_DIR) ./installers/nvim.sh