From 666886b12bfbedb2f7500c2f145f31426c4ba138 Mon Sep 17 00:00:00 2001 From: Albin Date: Mon, 17 Jun 2024 10:50:31 +0200 Subject: [PATCH] Skip using podman in lockfile script This makes it easier to use the script in a wider range of environments and if needed it can still be executed within a container. --- android/scripts/update-lockfile.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/android/scripts/update-lockfile.sh b/android/scripts/update-lockfile.sh index 3afa0c8606ba..594bed5fbe48 100755 --- a/android/scripts/update-lockfile.sh +++ b/android/scripts/update-lockfile.sh @@ -12,8 +12,4 @@ echo "Removing old components..." sed -i '//,/<\/components>/d' ../gradle/verification-metadata.xml echo "Generating new components..." -android_container_image_name=$(cat "../../building/android-container-image.txt") -podman run --rm -it \ - -v ../..:/build:Z \ - "$android_container_image_name" \ - bash -c 'android/gradlew -q -p android -M sha256 assemble compileDebugUnitTestKotlin assembleAndroidTest lint' +../gradlew -q -p .. -M sha256 assemble compileDebugUnitTestKotlin assembleAndroidTest lint