Skip to content

Commit

Permalink
Don't check for Go logs on failure (#1279)
Browse files Browse the repository at this point in the history
  • Loading branch information
Angela P Wen authored and GitHub committed Sep 29, 2022
1 parent 0831a67 commit 57719e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/debug-artifacts-failure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
echo "Missing database initialization logs"
exit 1
fi
if [[ ! -d "$language/log" ]] ; then
if [[ ! "$language" == "go" ]] && [[ ! -d "$language/log" ]] ; then
echo "Missing logs for $language"
exit 1
fi
Expand Down

0 comments on commit 57719e0

Please sign in to comment.