We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0da5e37 commit 79c8d86Copy full SHA for 79c8d86
.github/workflows/premerge.yaml
@@ -45,8 +45,8 @@ jobs:
45
modified_projects="$(keep-modified-projects ${all_projects})"
46
47
windows_projects_to_test=$(exclude-windows $(compute-projects-to-test 1 ${modified_projects}))
48
- windows_check_targets=$(check-targets ${windows_projects_to_test} | sort | uniq | tr '\015' ' ')
49
- windows_projects=$(add-dependencies ${windows_projects_to_test} | sort | uniq | tr '\015' ';')
+ windows_check_targets=$(check-targets ${windows_projects_to_test} | sort | uniq | tr -d '\r' | tr '\n' ' ')
+ windows_projects=$(add-dependencies ${windows_projects_to_test} | sort | uniq | tr -d '\r' | tr '\n' ';')
50
51
if [[ "${windows_projects}" == "" ]]; then
52
echo "No projects to build"
0 commit comments