Don't check for Go logs on failure (#1279)

This commit is contained in:
Angela P Wen 2022-09-29 14:23:35 -07:00 committed by GitHub
parent 0831a67a20
commit 57719e015c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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