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
This commit is contained in:
parent
0a452750dd
commit
fe61d4aa51
1 changed files with 2 additions and 2 deletions
4
Makefile
4
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue