diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2019-07-15 17:34:49 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2019-08-05 11:46:14 -0400 |
commit | f8218b2beb8b184e7b3585f1280695ecfef040f9 (patch) | |
tree | e89206e715b3ef2d7c999d9a5673f899978b7f7a /icon/Makefile | |
parent | e635c5b43df0ed6f28c05429dae126d645ac8717 (diff) |
[bug] allow to fail on cleanup
Diffstat (limited to 'icon/Makefile')
-rw-r--r-- | icon/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icon/Makefile b/icon/Makefile index 445fee4..887e78b 100644 --- a/icon/Makefile +++ b/icon/Makefile @@ -21,5 +21,5 @@ go_array_name = "$(shell echo $(<) | sed -e 's/.*vpn_\(.*\)\.png/\u\1/' -e 's/_/ cat $< | 2goarray $(go_array_name) icon >> $@ clean: - rm *_unix.go - rm *_darwin.go + rm -f *_unix.go + rm -f *_darwin.go |