From f8e0feeda6e0aed2673c54b1bff602c9e7ca8343 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=AE=AE=E0=AE=A9=E0=AF=8B=E0=AE=9C=E0=AF=8D=E0=AE=95?= =?UTF-8?q?=E0=AF=81=E0=AE=AE=E0=AE=BE=E0=AE=B0=E0=AF=8D=20=E0=AE=AA?= =?UTF-8?q?=E0=AE=B4=E0=AE=A9=E0=AE=BF=E0=AE=9A=E0=AF=8D=E0=AE=9A=E0=AE=BE?= =?UTF-8?q?=E0=AE=AE=E0=AE=BF?= Date: Sun, 11 Aug 2024 12:08:51 +0530 Subject: [PATCH] Kill Makefile --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index caec783a8ce..8812855c3e0 100644 --- a/Makefile +++ b/Makefile @@ -288,10 +288,8 @@ clean: # Kill all processes on port 3000 and 3001 kill: - @echo "$(YELLOW)Killing all processes on port 3000(RESET)" - @kill -9 $(lsof -t -i:3000) - @echo "$(YELLOW)Killing all processes on port 3001(RESET)" - @kill -9 $(lsof -t -i:3001) + @echo "$(YELLOW)Killing all processes on port 3000 and 3001$(RESET)" + @kill -9 $$(lsof -t -i:3000) $$(lsof -t -i:3001) # Help help: @echo "$(BLUE)Usage: make [target]$(RESET)"