diff options
author | Remi Collet <remi@remirepo.net> | 2021-09-02 10:11:19 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-09-02 10:11:19 +0200 |
commit | 274f2f31bef895207ef33a6e28627570440dca0d (patch) | |
tree | 898bab792f9bbd63bd1f215d587e17bfc8cd1897 /getmock | |
parent | d18cf8bc918d26cdad25d1311a7effe4bd308f48 (diff) |
8.1 helpers
Diffstat (limited to 'getmock')
-rwxr-xr-x | getmock | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -85,6 +85,16 @@ el8x80) fi type=enterprise ;; +el8x81) + dep=8 + if [ "$2" == "php81" -o "$2" == "test81" ] + then rep=$rep + elif [ "$2" == "remi" ] + then rep=php81 + else rep=${2}81 + fi + type=enterprise + ;; el*) dep=${dep#el} type=enterprise ;; @@ -317,6 +327,14 @@ elif [ $1 = all80 ]; then getOneMock el7x $opt '*8.0*' getOneMock el8x80 $opt '*8.0*' +elif [ $1 = all81 ]; then + [ $opt = remi ] && opt=php81 + [ $opt = test ] && opt=test81 + getOneMock fc33x $opt '*8.1*' + getOneMock fc34x $opt '*8.1*' + getOneMock el7x $opt '*8.1*' + getOneMock el8x81 $opt '*8.1*' + elif [ $1 = all54 ]; then n=7 getOneMock el${n}x remi '*5.4*' |