From 9d8801f10b24906b780c3ad7ff92e0b8a2451eb5 Mon Sep 17 00:00:00 2001 From: Aurelien Massiot Date: Wed, 20 Sep 2023 17:46:19 +0200 Subject: [PATCH] try fix makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d967474..c174e31 100644 --- a/Makefile +++ b/Makefile @@ -16,8 +16,8 @@ notebook-validation: tp-validation: $(MAKE) notebook-validation 2>execution_output.log || true execution_output=$$(cat execution_output.log && rm -f execution_output.log) - rm notebook/titanic.nbconvert.ipynb - rm notebook/y_test_predictions.csv + rm notebook/titanic.nbconvert.ipynb 2> /dev/null || true + rm notebook/y_test_predictions.csv 2> /dev/null || true echo "Le notebook a été exécuté de bout en bout:" echo "-----------------------" echo "$$execution_output"