Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion translations-desktop/handleDesktopTranslations.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ cd desktop
# Generate source translation files for master and stable-x.y branches
mkdir /branches

stable_versions=$(git branch -r | grep "origin\/stable\-[0-9]\.[0-9]{1,}$" -Eo | cut -f2 -d"/" | sort --version-sort -r | head -n 2)
# the 'stable-6.2' branch was only used for internal testing, not a proper release
stable_versions=$(git branch -r | grep "origin\/stable\-[0-9]+\.[0-9]{1,}$" -Eo | cut -f2 -d"/" | grep -v "stable-6.2" | sort --version-sort -r | head -n 2)
versions="$stable_versions master"

# Allow to manually limit translations to specified backport branches within the repo
Expand Down