From 1dab2c159a62e48d9b3263bb40ddc781ebb4e891 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Fri, 3 Jul 2026 10:17:01 +0100 Subject: [PATCH] uninstalling module openrc file uses -f flag to avoid errors --- make/openrc.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/openrc.mk b/make/openrc.mk index 7ca71fe..4efc89c 100644 --- a/make/openrc.mk +++ b/make/openrc.mk @@ -21,7 +21,7 @@ uninstall_openrc_$(module): $(if $(is_openrc_module),\ rc-service -U joeac.net.$(module) stop; \ rc-update -U del joeac.net.$(module) default; \ - rm ~/.config/rc/init.d/joeac.net.$(module); \ + rm -f ~/.config/rc/init.d/joeac.net.$(module); \ ) endef