Skip to content

Commit

Permalink
Fix renaming of play artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-mullvad committed Sep 21, 2023
1 parent a2a8b15 commit dd2742c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/buildserver-build-android.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ function build_ref {
# Will only match paths that include *-dev-* which means release builds will not be included
# Pipes all matching names and their new name to mv
pushd "$artifact_dir"
for original_file in MullvadVPN-*-dev-*{.apk,.aab}; do
new_file=$(echo "$original_file" | sed -nE "s/^(MullvadVPN-.*-dev-.*)(\.apk|\.aab)$/\1$version_suffix\2/p")
for original_file in MullvadVPN-*-dev-*{.apk,.play.aab}; do
new_file=$(echo "$original_file" | sed -nE "s/^(MullvadVPN-.*-dev-.*)(\.apk|\.play\.aab)$/\1$version_suffix\2/p")
mv "$original_file" "$new_file"
done
popd
Expand Down

0 comments on commit dd2742c

Please sign in to comment.