Skip to content

Commit 090924e

Browse files
authored
Merge pull request #111 from nick-lai/patch
chore: rename clean-cache to clear-cache in makefile
2 parents 536802e + a647e15 commit 090924e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ run-docker-gpu:
123123
clean:
124124
@echo "Cleaning project..."; \
125125
docker-compose down -v; \
126-
$(MAKE) clean-cache
126+
$(MAKE) clear-cache
127127

128128
.PHONY: clean-python-cache
129-
clean-cache:
129+
clear-cache:
130130
find . -type d -name '__pycache__' -exec rm -rf {} + && find . -type f -name '*.pyc' -delete
131131

0 commit comments

Comments
 (0)