summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-07-03 10:17:01 +0100
committerJoe Carstairs <me@joeac.net>2026-07-03 10:17:07 +0100
commit1dab2c159a62e48d9b3263bb40ddc781ebb4e891 (patch)
treef47651773322ca84f359e5eef845b078832bf9b5 /make
parent9cabb1053d90aa21bb1cdceb18a63a904f3aea0d (diff)
uninstalling module openrc file uses -f flag to avoid errors
Diffstat (limited to 'make')
-rw-r--r--make/openrc.mk2
1 files changed, 1 insertions, 1 deletions
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