diff options
author | Remi Collet <remi@remirepo.net> | 2024-02-28 11:29:37 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-02-28 11:29:37 +0100 |
commit | 4bf18e1e7ac32a0d57fe11475df924a7e7b2352e (patch) | |
tree | 1f4c17dd7097f803679708cd8ac66c96cd7b3dda | |
parent | 14033dca8c6f4115e8030bd4a738a2e0702a44fb (diff) |
fix getmock for test and memcached
-rwxr-xr-x | getmock | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -394,6 +394,9 @@ fi echo -e "\n\n\n---------------------------------------\n\n\n" opt=remi +if [ $1 = remi ]; then + shift +fi if [ $1 = test ]; then opt=test shift @@ -607,6 +610,8 @@ elif [ $1 = allm ]; then getOneMock fc38x $opt '*1.6*' getOneMock fc39x $opt '*1.6*' getOneMock fc39a $opt '*1.6*' + getOneMock fc40x $opt '*1.6*' + getOneMock fc40a $opt '*1.6*' getOneMock el9x $opt '*1.6*' getOneMock el9a $opt '*1.6*' @@ -761,7 +766,7 @@ elif [ $1 = allphp ]; then MOD="all54 all55 all56 all70 all71 all72 all73 all74 all80 all81 all82 all83" SCL="scl54 scl55 scl56 scl70 scl71 scl72 scl73 scl74 scl80 scl81 scl82 scl83" for i in $SCL $MOD - do $0 $i $opt | tee $LOG + do $0 $opt $i | tee $LOG if grep -q '64\.rpm' $LOG && grep -q 'Aucun' $LOG then echo -en "\n> $i - [enter] >"; read rep |