From e5c6ff32f29371abc51194811423ab46cab30531 Mon Sep 17 00:00:00 2001 From: Laborratte5 Date: Sat, 4 May 2024 20:56:49 +0200 Subject: [PATCH] build: clear jupyter notebook outputs on clean task - Clear jupyter notebook output on clean target - Clear jupyter notebook run counter on clean target - Fix: Deletion of lib/ if lib/ does not exist --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 225cb68..e4335f0 100644 --- a/Makefile +++ b/Makefile @@ -82,8 +82,9 @@ clean: rm -f src/*.pyc rm -f src/*.mpy rm -f $(JUPYTER_PYTHON_FILES) - rm -r lib/ + rm -rf lib/ rm -f requirements.txt + $(VENV) jupyter nbconvert --clear-output --inplace src/*.ipynb env: poetry install