remove min dir

This commit is contained in:
tavo 2025-07-01 10:24:08 -06:00
parent c57bafa27d
commit f2669d3740

View file

@ -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)