Files
Kohya-ss-sd-scripts/Makefile
2024-03-25 23:03:26 +09:00

18 lines
213 B
Makefile

.PHONY: all
all:
.PHONY: style
style:
ruff format --respect-gitignore
.PHONY: test_style
test_style:
ruff format --respect-gitignore --check
.PHONY: test
test: test_style
.DELETE_ON_ERROR:
SHELL=/bin/bash