Skip to content

Commit 57719e0

Browse files
authored
Don't check for Go logs on failure (#1279)
1 parent 0831a67 commit 57719e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/debug-artifacts-failure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
echo "Missing database initialization logs"
8080
exit 1
8181
fi
82-
if [[ ! -d "$language/log" ]] ; then
82+
if [[ ! "$language" == "go" ]] && [[ ! -d "$language/log" ]] ; then
8383
echo "Missing logs for $language"
8484
exit 1
8585
fi

0 commit comments

Comments
 (0)