fix : deploy bash script fix

This commit is contained in:
kms
2022-11-17 01:05:48 +09:00
parent 176e588ad0
commit 8c78ad0bdf

View File

@@ -4,7 +4,7 @@ REPOSITORY=/home/linux/app
echo "> 현재 구동 중인 애플리케이션 pid 확인"
CURRENT_PID=$(pgrep -fl action | grep java | awk '{print $1}')
CURRENT_PID=$(pgrep -fl java | awk '{print $1}')
echo "현재 구동 중인 애플리케이션 pid: $CURRENT_PID"