diff options
| -rwxr-xr-x | update_all.sh | 4 |
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 |
