From d329794a6d56ab7b2eb162eb66da66ab0c142a5f Mon Sep 17 00:00:00 2001 From: Jihun Kim Date: Sun, 6 Jul 2025 23:25:46 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EC=9E=AC=EB=B0=B0=ED=8F=AC?= =?UTF-8?q?=EB=A5=BC=20=EC=9C=84=ED=95=9C=20=EC=BD=94=EB=93=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/start-admin.sh | 2 +- scripts/start-user.sh | 2 +- scripts/stop-admin.sh | 2 +- scripts/stop-user.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/start-admin.sh b/scripts/start-admin.sh index 3fbec621..fbab278a 100644 --- a/scripts/start-admin.sh +++ b/scripts/start-admin.sh @@ -3,7 +3,7 @@ REPOSITORY="/home/ubuntu/spring-github-action-admin" cd $REPOSITORY -APP_NAME=application-admin +APP_NAME=nowait-app-admin-api JAR_NAME=$(ls $REPOSITORY | grep '.jar' | tail -n 1) JAR_PATH=$REPOSITORY/$JAR_NAME diff --git a/scripts/start-user.sh b/scripts/start-user.sh index ad7dcafd..366e247b 100644 --- a/scripts/start-user.sh +++ b/scripts/start-user.sh @@ -3,7 +3,7 @@ REPOSITORY="/home/ubuntu/spring-github-action-user" cd $REPOSITORY -APP_NAME=application-user +APP_NAME=nowait-app-user-api JAR_NAME=$(ls $REPOSITORY | grep '.jar' | tail -n 1) JAR_PATH=$REPOSITORY/$JAR_NAME diff --git a/scripts/stop-admin.sh b/scripts/stop-admin.sh index 7fcbe738..9c59f9ee 100644 --- a/scripts/stop-admin.sh +++ b/scripts/stop-admin.sh @@ -3,7 +3,7 @@ REPOSITORY="/home/ubuntu/spring-github-action-admin" cd $REPOSITORY -APP_NAME=application-admin +APP_NAME=nowait-app-admin-api JAR_NAME=$(ls $REPOSITORY | grep '.jar' | tail -n 1) JAR_PATH=$REPOSITORY/$JAR_NAME STOP_LOG="$REPOSITORY/stop.log" diff --git a/scripts/stop-user.sh b/scripts/stop-user.sh index 115668ae..0b112c68 100644 --- a/scripts/stop-user.sh +++ b/scripts/stop-user.sh @@ -3,7 +3,7 @@ REPOSITORY="/home/ubuntu/spring-github-action-user" cd $REPOSITORY -APP_NAME=application-user +APP_NAME=nowait-app-user-api JAR_NAME=$(ls $REPOSITORY | grep '.jar' | tail -n 1) JAR_PATH=$REPOSITORY/$JAR_NAME STOP_LOG="$REPOSITORY/stop.log"