aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-08-01 00:50:59 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-08-01 01:05:50 +0200
commitcb01a0945eefa1f8dd1743f821a6cc21d2a24ae3 (patch)
treee833f1a00ca7288203a76f4d3b738c48961c5240
parentRepair broken styles on search page. (diff)
downloadcalp-cb01a0945eefa1f8dd1743f821a6cc21d2a24ae3.tar.gz
calp-cb01a0945eefa1f8dd1743f821a6cc21d2a24ae3.tar.xz
make clean in static shouldn't fail if the file isn't there.
-rw-r--r--static/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/static/Makefile b/static/Makefile
index 9292ed8a..12727669 100644
--- a/static/Makefile
+++ b/static/Makefile
@@ -28,7 +28,7 @@ install: all
install -m644 -t $(DESTDIR)/usr/share/calp/www/ $(TARGETS)
clean:
- rm $(TARGETS)
+ -rm $(TARGETS)
%.css: %.scss
scss $(WATCH) -I. $< $@