aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2026-06-11 09:30:10 +0200
committerLoïc Hoguin <[email protected]>2026-06-11 09:30:10 +0200
commit1e236d808c78e54dc275d085a231c8b71e5a0535 (patch)
tree5ae053e87b2313c872a03d2d6134e4d279ec6369
parent644e6d44b3f018eb2ae66ff76f265bd4c2d5afaf (diff)
downloadci.erlang.mk-master.tar.gz
ci.erlang.mk-master.tar.bz2
ci.erlang.mk-master.zip
Fix updating OTP releases > .4HEADmaster
-rwxr-xr-xupdate_all.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/update_all.sh b/update_all.sh
index d890309..e4d1631 100755
--- a/update_all.sh
+++ b/update_all.sh
@@ -18,9 +18,11 @@ function match_latest_minors {
local dot2="$(match_latest $1.2)"
local dot3="$(match_latest $1.3)"
local dot4="$(match_latest $1.4)"
+ local dot5="$(match_latest $1.5)"
+ local dot6="$(match_latest $1.6)"
# Awk is used to trim whitespaces.
- echo "$dot0 $dot1 $dot2 $dot3 $dot4" | awk '{$1=$1};1'
+ echo "$dot0 $dot1 $dot2 $dot3 $dot4 $dot5 $dot6" | awk '{$1=$1};1'
}
for v in $versions; do