File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ git clone https://github.com/embeddedt/ModernFix mfix &>/dev/null
1919cd mfix
2020
2121# gather version list
22- readarray -t all_versions < <( git ls-remote --heads origin | awk ' {print $2} ' | sed ' s:.*/:: ' | sort -V )
22+ readarray -t all_versions < <( scripts/branchlist.sh )
2323
2424last_released_version=" "
2525do_release () {
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ git ls-remote --heads origin | awk ' {print $2}' | sed ' s:.*/::' | sort -V | grep -E ' ^1\.[0-9]*(\.[0-9]*)?$'
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ git clone https://github.com/embeddedt/ModernFix mfix &>/dev/null
2020cd mfix
2121
2222# gather version list
23- readarray -t all_versions < <( git ls-remote --heads origin | awk ' {print $2} ' | sed ' s:.*/:: ' | sort -V )
23+ readarray -t all_versions < <( scripts/branchlist.sh )
2424echo " found versions: ${all_versions[@]} "
2525
2626# checkout base version
You can’t perform that action at this time.
0 commit comments