Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
megymj committed Nov 12, 2023
1 parent 25cbe17 commit 0313127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# Flask 애플리케이션 프로세스를 찾아서 종료합니다.
if pgrep -f 'python3 app.py'; then
echo "Process found. Stopping 'python3 app.py'."
pkill -f 'python3 app.py'
pkill -f 'python3 app.py' || true # Ignore the exit status
else
echo "Process not found."
fi
Expand Down

0 comments on commit 0313127

Please sign in to comment.