diff options
author | Remi Collet <remi@remirepo.net> | 2024-02-22 09:59:20 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-02-22 09:59:20 +0100 |
commit | 14033dca8c6f4115e8030bd4a738a2e0702a44fb (patch) | |
tree | 0427c977934add3df9f59ffdb754995d3c505d29 /getmock | |
parent | 5210ceb6f5b66409204afa233d1ca2db1eb8827a (diff) |
another small improv. for allphp
Diffstat (limited to 'getmock')
-rwxr-xr-x | getmock | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -757,13 +757,17 @@ elif [ $1 = scl72 ]; then getOneMock scl72el8a $opt elif [ $1 = allphp ]; then - + LOG=$(mktemp out.XXXXXXXXXX) 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 - echo -en "\n> $i - [enter] >"; read rep + do $0 $i $opt | tee $LOG + if grep -q '64\.rpm' $LOG && grep -q 'Aucun' $LOG + then + echo -en "\n> $i - [enter] >"; read rep + fi done + rm -f $LOG else for i in $* do |