aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-02-17 15:54:03 -0300
committerEuAndreh <eu@euandre.org>2023-02-17 15:54:06 -0300
commitf5dae438177f185cba971fb0ce32a780b4282301 (patch)
treec505368d13b0875f0f338e067b0d0f65edb81d21 /Makefile
parentMakefile: Assert ~/Documents/txt/ exists (diff)
downloaddotfiles-f5dae438177f185cba971fb0ce32a780b4282301.tar.gz
dotfiles-f5dae438177f185cba971fb0ce32a780b4282301.tar.xz
Makefile: Fix "clean" target
Since "$(XDG_STATE_HOME)/ssh/conn" is a directory, rm(1) needs the -r option to operate on it.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index df9f4ae..a4b96fd 100644
--- a/Makefile
+++ b/Makefile
@@ -143,5 +143,5 @@ check: check-shellcheck check-perlcritic check-fixme check-dirty-public \
@cd $(PRIV_CONFIG) && $(MAKE) $@
clean:
- rm -f $(derived-assets)
+ rm -rf $(derived-assets)
@cd $(PRIV_CONFIG) && $(MAKE) $@