Skip to content

Commit c4fa6e6

Browse files
authored
android.yml: fix typo
1 parent 93c2a19 commit c4fa6e6

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/android.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,8 @@ jobs:
138138
set -xv
139139
env | grep ANDROID
140140
echo "Searching for d8 files in $ANDROID_HOME/build-tools"
141-
for BUILD_TOOLS_DIR in "$ANDROID_HOME/build-tools/*" ; do
142-
echo "Looking for d8 in $BUILD_TOOLS_DIR"
143-
for D8_FILE in `find "$BUILD_TOOLS_DIR" -name d8'*'`; do
144-
echo "$D8_FILE"
145-
done
141+
for D8_FILE in `find "$ANDROID_HOME"/build-tools/* -name d8'*'`; do
142+
echo "$D8_FILE"
146143
done
147144
148145
- name: Download C++ SDK

0 commit comments

Comments
 (0)