diff options
author | EuAndreh <eu@euandre.org> | 2023-12-08 18:28:30 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-12-08 18:28:30 -0300 |
commit | 1976e603ef71dcf512f277cf6f2c787ea6b75362 (patch) | |
tree | 908b0bc43662da60816cd20566b86f0a306490d0 /bin | |
parent | etc/sh/rc: Replace "clean" alias with clean(1) utility (diff) | |
download | dotfiles-1976e603ef71dcf512f277cf6f2c787ea6b75362.tar.gz dotfiles-1976e603ef71dcf512f277cf6f2c787ea6b75362.tar.xz |
bin/clean: Fix "if" order
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/clean | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -61,9 +61,9 @@ shift $((OPTIND - 1)) if [ -e dev.mk ]; then - F='Makefile' -else F='dev.mk' +else + F='Makefile' fi make -sf"$F" clean |