make clean
This commit is contained in:
6
Makefile
6
Makefile
@@ -1,6 +1,6 @@
|
||||
ENV = export $(shell cat .env | grep -v '^\#' | grep -v '^$$' | xargs)
|
||||
|
||||
.PHONY: fetch write translate upload all
|
||||
.PHONY: fetch write translate upload clean all
|
||||
|
||||
## Letölt egy wiki oldalt SOURCE.md-be
|
||||
## Használat: make fetch URL=/path/to/page
|
||||
@@ -19,5 +19,9 @@ translate:
|
||||
upload:
|
||||
$(ENV) && python3 generator.py upload
|
||||
|
||||
## Törli az output mappából az .md fájlokat
|
||||
clean:
|
||||
$(ENV) && python3 generator.py clean
|
||||
|
||||
## Teljes pipeline: write → translate → upload
|
||||
all: write translate upload
|
||||
Reference in New Issue
Block a user