File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -96,17 +96,14 @@ task:
96
96
x64_NATIVE_TOOLS : ' "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvars64.bat"'
97
97
IgnoreWarnIntDirInTempDetected : ' true'
98
98
merge_script :
99
- -
ps : git config --global user.email "[email protected] "
100
- - ps : git config --global user.name "ci"
99
+ -
git config --global user.email "[email protected] "
100
+ - git config --global user.name "ci"
101
101
# Windows filesystem loses the executable bit, and all of the executable
102
102
# files are considered "modified" now. It will break the following `git merge`
103
103
# command. The next two commands make git ignore this issue.
104
- - ps : git config core.filemode false
105
- - ps : git reset --hard
106
- - ps : if ($env:CIRRUS_PR -eq $null) { exit 0; }
107
- - ps : git fetch $env:CIRRUS_REPO_CLONE_URL $env:CIRRUS_BASE_BRANCH
108
- # Merge base to detect silent merge conflicts.
109
- - ps : git merge FETCH_HEAD
104
+ - git config core.filemode false
105
+ - git reset --hard
106
+ - PowerShell -NoLogo -Command if ($env:CIRRUS_PR -ne $null) { git fetch $env:CIRRUS_REPO_CLONE_URL $env:CIRRUS_BASE_BRANCH; git merge FETCH_HEAD; }
110
107
msvc_qt_built_cache :
111
108
folder : " %QTBASEDIR%"
112
109
reupload_on_changes : false
You can’t perform that action at this time.
0 commit comments