Skip to content

Commit

Permalink
Merge pull request #6 from TG-WinG/feature/build
Browse files Browse the repository at this point in the history
feat: shutdown.sh 추가
  • Loading branch information
wwingyou authored Mar 24, 2024
2 parents da4c4b5 + 315ab7a commit 70e8911
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions JWT/deploy/shutdown.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

pid=$(sudo lsof -t -i :8080)
if [ -n pid ]; then
kill $(sudo lsof -t -i :8080)
fi

0 comments on commit 70e8911

Please sign in to comment.