Skip to content

Commit fe6a721

Browse files
committed
fix: exclude plain.jar from deployment
1 parent d1f4a02 commit fe6a721

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
APP_DIR=/home/ec2-user/app
5-
JAR_PATH=$(ls $APP_DIR/*.jar | head -1)
5+
JAR_PATH=$(ls $APP_DIR/*.jar | grep -v plain | head -1)
66
echo "> JAR 파일: $JAR_PATH"
77

88
echo "> 실행 중인 애플리케이션 종료"

0 commit comments

Comments
 (0)