From fe61d4aa5157b05fe54aa43870ea6b38d244d9d8 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Thu, 27 Jul 2023 16:57:43 -0300 Subject: [PATCH] fix(Makefile): fix typo in 'rm -rf' command to remove node_modules directory in install_frontend target fix(Makefile): remove unnecessary 'rm -rf' command in run_frontend target --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c123a9f18..d969142f9 100644 --- a/Makefile +++ b/Makefile @@ -32,10 +32,10 @@ lint: poetry run ruff . --fix install_frontend: - cd src/frontend && m -rf node_modules && npm install + cd src/frontend && rm -rf node_modules && npm install run_frontend: - cd src/frontend && rm -rf node_modules && npm start + cd src/frontend && npm start frontend: make install_frontend