Skip to content

Commit aa9e7bc

Browse files
committed
check
1 parent bb87874 commit aa9e7bc

File tree

1 file changed

+1
-1
lines changed
  • workflow_helpers/relocate_build_binaries

1 file changed

+1
-1
lines changed

workflow_helpers/relocate_build_binaries/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const extractFilenames = (input) => {
3939
.split('\n')
4040
.map(JSON.parse)
4141
// just the test binaries
42-
.filter(({ profile: { test } }) => test)
42+
.filter(({ profile }) => profile?.test)
4343
// we want to extra this field
4444
.map(({ executable }) => executable)
4545
// some json output might not have executable key

0 commit comments

Comments
 (0)