Skip to content

Commit 72a757a

Browse files
committed
avoid command from exiting with error code
1 parent cbba709 commit 72a757a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/android.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,13 @@ jobs:
9595
9696
- name: Run strings.exe once to accept license(Windows only)
9797
if: startsWith(matrix.os, 'windows')
98-
continue-on-error: true
9998
shell: bash
10099
run: |
101100
# This invocation is just to accept the license. Otherwise the command
102101
# fails during build process. Also, running a command with just this
103102
# flag makes the process exit with code 127 and stops the workflow.
104103
# We ignore the error and continue with the rest of the steps.
105-
strings -accepteula
104+
strings -accepteula || true
106105
107106
- name: Cache ccache files
108107
id: cache_ccache

0 commit comments

Comments
 (0)