Skip to content

Commit ed41ca8

Browse files
committed
Fix
1 parent 25c85c5 commit ed41ca8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/_android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
cp ${BUILD_AAR_DIR}/executorch.aar $ARTIFACTS_DIR_NAME
3737
3838
mkdir -p ${ARTIFACTS_DIR_NAME}/library_test_dir
39-
sh extension/android/executorch_android/android_test_setup.sh
39+
bash extension/android/executorch_android/android_test_setup.sh
4040
(cd extension/android; ANDROID_HOME="${ANDROID_SDK:-/opt/android/sdk}" ./gradlew :executorch_android:assembleAndroidTest)
4141
cp extension/android/executorch_android/build/outputs/apk/androidTest/debug/executorch_android-debug-androidTest.apk "${ARTIFACTS_DIR_NAME}/library_test_dir"
4242

extension/android/executorch_android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ android {
3737
}
3838

3939
task copyTestRes(type: Exec) {
40-
commandLine 'sh', 'android_test_setup.sh'
40+
commandLine 'bash', 'android_test_setup.sh'
4141
}
4242

4343
dependencies {

0 commit comments

Comments
 (0)