diff options
author | metamuffin <metamuffin@disroot.org> | 2024-11-21 14:51:56 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-11-21 14:52:06 +0100 |
commit | 7645321c171e10a6afc66f4e7cdf46fe35c74457 (patch) | |
tree | 03b637a745af616ebf21caba3ffcf59139f098a2 /client/makefile | |
parent | 8d6ccadf1a82d23a56d6b1ae673a442310804ea6 (diff) | |
download | hurrycurry-7645321c171e10a6afc66f4e7cdf46fe35c74457.tar hurrycurry-7645321c171e10a6afc66f4e7cdf46fe35c74457.tar.bz2 hurrycurry-7645321c171e10a6afc66f4e7cdf46fe35c74457.tar.zst |
replace not comment with test flag
Diffstat (limited to 'client/makefile')
-rw-r--r-- | client/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/makefile b/client/makefile index ca482d53..c1de78c2 100644 --- a/client/makefile +++ b/client/makefile @@ -27,7 +27,7 @@ clean: rm -f icons/adaptive-foreground.png icons/adaptive-background.png .godot/import-finished: $(LOCALES) - if not test -e $@; then godot --headless --import project.godot; fi + if test ! -e $@; then godot --headless --import project.godot; fi touch $@ $(LT): $(shell find ../locale/tools -type f) |