스프링 부트와 AWS로 혼자 구현하는 웹 서비스 Chapter9 오탈자 수정

This commit is contained in:
DESKTOP-FSO9NHB\User
2020-12-06 15:46:29 +09:00
parent 4e0dc47b18
commit 7f1f982a6e
2 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ cp $REPOSITORY/zip/*.jar $REPOSITORY/
echo "> 현재 구동 중인 애플리케이션 pid 확인"
CURRENT_PID=$(pgrep -fl springboot2-webservice | grep jar | awk '{print $1}')
CURRENT_PID=$(pgrep -fl $PROJECT_NAME | grep jar | awk '{print $1}')
echo "현재 구동 중인 애플리케이션 pid : $CURRENT_PID"
@@ -23,7 +23,7 @@ fi
echo "> 새 애플리케이션 배포"
JAR_NAME=$(ls -tr $REPOSITORY/*.jar | tall -n 1)
JAR_NAME=$(ls -tr $REPOSITORY/*.jar | tail -n 1)
echo "> JAR_NAME 에 실행권한 추가"