mirror of
https://github.com/status-im/packages-check-bot.git
synced 2026-08-31 13:31:11 +00:00
Migrate to TypeScript to avoid silent errors and improve debugging
This commit is contained in:
Executable
+7
@@ -0,0 +1,7 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user