remove min dir
This commit is contained in:
parent
c57bafa27d
commit
f2669d3740
1 changed files with 4 additions and 3 deletions
|
@ -7,8 +7,9 @@ DOTENV = .env
|
|||
TEMPLATE_SRC = $(shell find templates -type f)
|
||||
STATIC_SRC = $(shell find static -type f)
|
||||
|
||||
TEMPLATE_DST = min/views
|
||||
STATIC_DST = min/static
|
||||
MIN_DST = min
|
||||
TEMPLATE_DST = $(MIN)/views
|
||||
STATIC_DST = $(MIN)/static
|
||||
|
||||
all: $(BIN)
|
||||
|
||||
|
@ -38,4 +39,4 @@ datadir: $(DOTENV)
|
|||
|
||||
clean:
|
||||
@echo "🧹 Cleaning..."
|
||||
rm -rf $(BIN) $(TEMPLATE_DST) $(STATIC_DST)
|
||||
rm -rf $(BIN) $(MIN_DST)
|
||||
|
|
Loading…
Reference in a new issue