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)