diff options
author | Remi Collet <remi@remirepo.net> | 2022-03-01 17:15:13 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2022-03-01 17:15:13 +0100 |
commit | f542e6f3cd07639e429e9ea02c7734195be84254 (patch) | |
tree | e3b465fd84199e11e5780a8114a94d36b972231b | |
parent | 8e9b312da18296832f8d2fc8532da7118e06fc21 (diff) |
tweaks mock74x and mock80x helpers
-rw-r--r-- | buildfct | 10 | ||||
-rwxr-xr-x | getmock | 2 |
2 files changed, 12 insertions, 0 deletions
@@ -449,6 +449,11 @@ if [ "$1" = "-q" ]; then fi if [ -f "$1" ]; then + for i in 34 + do + echo -n "$(date +%X) 74 fc$i " + mock $quiet --configdir=$mocketc -r fc${i}x rebuild "$@" && echo " Ok." || echo " Error !" + done for i in 35 36 do echo -n "$(date +%X) 74 fc$i " @@ -527,6 +532,11 @@ if [ "$1" = "-q" ]; then fi if [ -f "$1" ]; then + for i in 35 + do + echo -n "$(date +%X) 80 fc$i " + mock $quiet --configdir=$mocketc -r fc${i}x rebuild "$@" && echo " Ok." || echo " Error !" + done for i in 34 36 do echo -n "$(date +%X) 80 fc$i " @@ -387,6 +387,7 @@ elif [ $1 = all73 ]; then getOneMock el8x73 $opt '*7.3*' elif [ $1 = all74 ]; then + getOneMock fc34x $opt '*7.4*' [ $opt = remi ] && opt=php74 [ $opt = test ] && opt=test74 getOneMock fc35x74 $opt '*7.4*' @@ -396,6 +397,7 @@ elif [ $1 = all74 ]; then getOneMock el9x74 $opt '*7.4*' elif [ $1 = all80 ]; then + getOneMock fc35x $opt '*8.0*' [ $opt = remi ] && opt=php80 [ $opt = test ] && opt=test80 getOneMock fc34x80 $opt '*8.0*' |