mirror of
https://github.com/status-im/packages-check-bot.git
synced 2026-08-30 21:11:08 +00:00
8 lines
160 B
Bash
Executable File
8 lines
160 B
Bash
Executable File
#!/bin/bash
|
|
|
|
APP_PORT=3000
|
|
APP_PID="$(lsof -i :${APP_PORT} | awk 'NR!=1 {print $2}' | sort -u | tr '\r\n' ' ')"
|
|
if [ ! -z "$APP_PID" ]; then
|
|
kill $APP_PID
|
|
fi
|