Skip to content

Commit 66cc07a

Browse files
Make windows line break hack fail quietly (#57)
* Remove error suppression from line break fix * ignore errors * silence error logs
1 parent da862eb commit 66cc07a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/setup-runner/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
- name: Fix Windows line breaks
2323
if: runner.os == 'Windows'
2424
shell: bash
25-
run: find . -type f -print0 | xargs -0 d2u 2>/dev/null
25+
run: find . -type f -print0 | xargs -0 d2u 2>/dev/null || echo "Ignoring failure"
2626

2727
- name: Install bazelrc files
2828
shell: bash

0 commit comments

Comments
 (0)