Skip to content

Commit 953229c

Browse files
committed
splitting work on strings.exe
1 parent c354526 commit 953229c

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/android.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)