diff options
| author | Joe Carstairs <me@joeac.net> | 2026-07-03 10:17:01 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-07-03 10:17:07 +0100 |
| commit | 1dab2c159a62e48d9b3263bb40ddc781ebb4e891 (patch) | |
| tree | f47651773322ca84f359e5eef845b078832bf9b5 | |
| parent | 9cabb1053d90aa21bb1cdceb18a63a904f3aea0d (diff) | |
uninstalling module openrc file uses -f flag to avoid errors
| -rw-r--r-- | make/openrc.mk | 2 |
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 |
