File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -83,18 +83,19 @@ jobs:
8383 run : |
8484 build_scripts/android/install_prereqs.sh
8585
86- - name : Special handling of strings.exe on Windows
86+ - name : Add strings.exe to PATH
8787 if : startsWith(matrix.os, 'windows')
88+ shell : bash
8889 run : |
8990 # strings.exe was installed in repo root by install_prereqs
90- echo "$ {{github.workspace }}" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
91- echo "$PATH"
92- # You have to accept the license once before running it.
93- strings -accepteula
91+ echo "${{ github.workspace }}" >> $GITHUB_PATH
9492
95- - name : Install prerequisites
93+ - name : Accept license for strings.exe
94+ if : startsWith(matrix.os, 'windows')
9695 shell : bash
9796 run : |
97+ echo "$PATH"
98+ strings -accepteula
9899
99100 - name : Cache ccache files
100101 id : cache_ccache
You can’t perform that action at this time.
0 commit comments