diff options
author | EuAndreh <eu@euandre.org> | 2023-02-17 15:54:03 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-02-17 15:54:06 -0300 |
commit | f5dae438177f185cba971fb0ce32a780b4282301 (patch) | |
tree | c505368d13b0875f0f338e067b0d0f65edb81d21 | |
parent | Makefile: Assert ~/Documents/txt/ exists (diff) | |
download | dotfiles-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.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) $@ |