Skip to content

Commit

Permalink
revert debug change
Browse files Browse the repository at this point in the history
  • Loading branch information
saw-jan committed Nov 18, 2022
1 parent 04d1cf4 commit 7f4bbad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/gui/drone/notification_template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ if [ "${DRONE_BUILD_STATUS}" != "success" ]; then
STACKTRACE_STATUS_CODE=$($CURL "$STACKTRACE")

LOGS=""
if [[ "$SERVER_STATUS_CODE" != "200" ]]; then
if [[ "$SERVER_STATUS_CODE" == "200" ]]; then
LOGS+="\n> [Server log]($SERVER_LOG) " # 2 spaces at the end act as line-break
fi
if [[ "$GUI_STATUS_CODE" != "200" ]]; then
if [[ "$GUI_STATUS_CODE" == "200" ]]; then
LOGS+="\n> [GUI test log]($GUI_LOG)"
fi
if [[ "$STACKTRACE_STATUS_CODE" != "200" ]]; then
if [[ "$STACKTRACE_STATUS_CODE" == "200" ]]; then
LOGS+="\n> [Stacktrace]($STACKTRACE)"
fi

Expand Down

0 comments on commit 7f4bbad

Please sign in to comment.