Skip to content

Commit

Permalink
Kill Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
SmartManoj committed Aug 11, 2024
1 parent c69ea55 commit f8e0fee
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down

0 comments on commit f8e0fee

Please sign in to comment.