Skip to content

Commit 427b18b

Browse files
committed
Fix script location
1 parent 51883a5 commit 427b18b

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/scripts/android/android-emulator-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ANDROID_PROFILE="Pixel 6"
2525

2626
# see if the Android SDK is even installed
2727
echo "CHECKING FOR ANDROID SDK"
28-
find / -name sdkmanager || true
28+
find / -type f -name sdkmanager || true
2929
echo "DONE CHECKING FOR ANDROID SDK"
3030

3131
# install and start an Android emulator

.github/workflows/swift_package_test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,8 @@ jobs:
630630
run: |
631631
if [ "${{ github.repository }}" = "swiftlang/github-workflows" ]; then
632632
echo "root=$GITHUB_WORKSPACE" >> $GITHUB_OUTPUT
633+
elif [ "${{ github.repository }}" = "swift-android-sdk/github-workflows" ]; then
634+
echo "root=$GITHUB_WORKSPACE" >> $GITHUB_OUTPUT
633635
else
634636
echo "root=$GITHUB_WORKSPACE/github-workflows" >> $GITHUB_OUTPUT
635637
fi

0 commit comments

Comments
 (0)