1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-22 11:35:21 +01:00

adding the missing flag for sed in the fdroid build (#1613)

This commit is contained in:
Joseph Flinn 2021-10-28 06:49:29 -07:00 committed by GitHub
parent 69d1de47c6
commit ea5e4aafa3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -229,7 +229,7 @@ jobs:
echo "##### Setting Version Code $BUILD_NUMBER" echo "##### Setting Version Code $BUILD_NUMBER"
echo "########################################" echo "########################################"
sed "s/android:versionCode=\"1\"/android:versionCode=\"$BUILD_NUMBER\"/" \ sed -i "s/android:versionCode=\"1\"/android:versionCode=\"$BUILD_NUMBER\"/" \
./src/Android/Properties/AndroidManifest.xml ./src/Android/Properties/AndroidManifest.xml
shell: bash shell: bash