File tree 2 files changed +10
-4
lines changed
build-tools/automation/yaml-templates
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 31
31
* .patch
32
32
* .keystore
33
33
/omnisharp.json
34
+ src /native /CMakePresets.json
35
+ src /native /clr /host /generate-pinvoke-tables
36
+ src /native /clr /host /pinvoke-tables.include.generated
37
+ src /native /mono /pinvoke-override /generate-pinvoke-tables
38
+ src /native /mono /pinvoke-override /pinvoke-tables.include.generated
39
+ dotnet-install.ps1
Original file line number Diff line number Diff line change 9
9
# Run this to log the output for the user
10
10
git status
11
11
12
- # Run this to error the build if untracked files
13
- $process= git status --porcelain --untracked-files=no
12
+ # Run this to error the build if modified/ untracked files exist
13
+ $process= git status --porcelain
14
14
15
15
if ($process)
16
16
{
17
- Write-Host "##vso[task.logissue type=error]git tree has modified tracked files."
17
+ Write-Host "##vso[task.logissue type=error]git tree has modified or untracked files."
18
18
Write-Host "##vso[task.complete result=Failed;]"
19
19
}
20
- displayName : Ensure no modified committed files
20
+ displayName : Ensure no modified/untracked files
21
21
workingDirectory : ${{ parameters.xaSourcePath }}
22
22
condition : ${{ parameters.condition }}
You can’t perform that action at this time.
0 commit comments