We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b680cf commit 8099104Copy full SHA for 8099104
.azure-pipelines/steps/run.yml
@@ -84,6 +84,13 @@ steps:
84
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'))
85
displayName: Check out submodules (Windows)
86
87
+# See also the disable for autocrlf above, this just checks that it worked
88
+#
89
+# If matches for '\r' are found, we should immediately exit the build.
90
+- bash: |
91
+ egrep -l $'\r'\$ src/tools/rust-installer/install-template.sh && exit 1
92
+ displayName: Verify line endings are LF
93
+
94
# Ensure the `aws` CLI is installed so we can deploy later on, cache docker
95
# images, etc.
96
- bash: |
0 commit comments