Merge 1.16 into 1.18
This commit is contained in:
commit
f2d05c1355
|
|
@ -19,7 +19,7 @@ git clone https://github.com/embeddedt/ModernFix mfix &>/dev/null
|
|||
cd mfix
|
||||
|
||||
# gather version list
|
||||
readarray -t all_versions < <(git ls-remote --heads origin | awk '{print $2}' | sed 's:.*/::' | sort -V)
|
||||
readarray -t all_versions < <(scripts/branchlist.sh)
|
||||
|
||||
last_released_version=""
|
||||
do_release() {
|
||||
|
|
|
|||
2
scripts/branchlist.sh
Executable file
2
scripts/branchlist.sh
Executable file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/bash
|
||||
git ls-remote --heads origin | awk '{print $2}' | sed 's:.*/::' | sort -V | grep -E '^1\.[0-9]*(\.[0-9]*)?$'
|
||||
|
|
@ -20,7 +20,7 @@ git clone https://github.com/embeddedt/ModernFix mfix &>/dev/null
|
|||
cd mfix
|
||||
|
||||
# gather version list
|
||||
readarray -t all_versions < <(git ls-remote --heads origin | awk '{print $2}' | sed 's:.*/::' | sort -V)
|
||||
readarray -t all_versions < <(scripts/branchlist.sh)
|
||||
echo "found versions: ${all_versions[@]}"
|
||||
|
||||
# checkout base version
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user