Skip to content

Commit 380adbb

Browse files
committed
remove unnecessary logic
1 parent 1c901c7 commit 380adbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/scripts/resync-all-specs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def write_summary(errored: dict[str, str], new: list[str], filename: Optional[st
7676
text=True,
7777
check=True,
7878
)
79-
succeeded = [i for i in process.stdout.strip().split() if "data/mci/" not in i]
79+
succeeded = process.stdout.strip().split()
8080
if len(succeeded) > 0:
8181
pr_body += "The following specs were changed:\n -"
8282
pr_body += "\n -".join(succeeded)

0 commit comments

Comments
 (0)