Skip to content

Commit 73b150e

Browse files
committed
ci: fixed the commit
1 parent 8a6700b commit 73b150e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,10 @@ jobs:
104104
merge-multiple: true
105105
- name: Manually sort Windows bindings
106106
run: |
107-
find cached_bindings -type f -name '*-windows-*' -exec rustfmt --edition=2021 -v {} \;
107+
Get-ChildItem -Path "cached_bindings" -Recurse -File -Filter "*-windows-*" | ForEach-Object {
108+
rustfmt --edition=2021 -v $_.FullName
109+
}
110+
108111
- name: Push cached bindings to the repository
109112
run: |
110113
# Note: the following account information will not work on GHES

0 commit comments

Comments
 (0)