From d1fd682e55698f4366f7b76e35c96fbc46b1c5ea Mon Sep 17 00:00:00 2001 From: Jack Pearkes Date: Thu, 1 May 2014 11:39:56 -0400 Subject: [PATCH] ui: clean with makefile --- ui/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/Makefile b/ui/Makefile index 4a0456231..cc5168e46 100644 --- a/ui/Makefile +++ b/ui/Makefile @@ -5,10 +5,13 @@ watch: sass styles:static --watch dist: + @echo clean dist + @rm -rf dist/index.html + @rm -rf dist/static @echo "compile styles/*.scss" @sass styles/base.scss static/base.css @ruby scripts/compile.rb - cp -R ./static dist/static + cp -R ./static dist/static/ cp index.html dist/index.html .PHONY: server watch dist