diff options
| author | Albin <albin@mullvad.net> | 2024-06-17 10:50:31 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2024-06-17 14:19:13 +0200 |
| commit | 666886b12bfbedb2f7500c2f145f31426c4ba138 (patch) | |
| tree | 90fe6865926a5a9b69f3e2df76aaa7d5bafe1545 /android/scripts | |
| parent | 4204b0facd9e9eab031b006e613c225082af73e9 (diff) | |
| download | mullvadvpn-666886b12bfbedb2f7500c2f145f31426c4ba138.tar.xz mullvadvpn-666886b12bfbedb2f7500c2f145f31426c4ba138.zip | |
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.
Diffstat (limited to 'android/scripts')
| -rwxr-xr-x | android/scripts/update-lockfile.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/android/scripts/update-lockfile.sh b/android/scripts/update-lockfile.sh index 3afa0c8606..594bed5fbe 100755 --- a/android/scripts/update-lockfile.sh +++ b/android/scripts/update-lockfile.sh @@ -12,8 +12,4 @@ echo "Removing old components..." sed -i '/<components>/,/<\/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 |
