File tree Expand file tree Collapse file tree 12 files changed +72
-48
lines changed
build/ansible/group_vars/all Expand file tree Collapse file tree 12 files changed +72
-48
lines changed Original file line number Diff line number Diff line change @@ -347,9 +347,11 @@ fi \
347
347
\
348
348
\
349
349
# -------------------- symfony --------------------
350
- && SYMFONY_VERSION="$( curl -sS -L --fail https://get.symfony.com/cli/LATEST )" \
351
- && curl -sS -L --fail "https://github.com/symfony/cli/releases/download/v${SYMFONY_VERSION}/symfony_linux_$(dpkg-architecture --query DEB_HOST_ARCH)" > /usr/local/bin/symfony \
352
- && chmod +x /usr/local/bin/symfony \
350
+ && VERSION="$(curl -s https://api.github.com/repos/symfony-cli/symfony-cli/releases/latest | awk -F\" '/symfony-cli_.*._amd64\.deb/{print $(NF-1)}' | head -1 | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')" \
351
+ && curl -sS -L --fail -o /tmp/symfonycli.deb https://github.com/symfony-cli/symfony-cli/releases/download/v${VERSION}/symfony-cli_${VERSION}_$(dpkg-architecture --query DEB_HOST_ARCH).deb \
352
+ && dpkg -i /tmp/symfonycli.deb \
353
+ && rm -f /tmp/symfonycli.deb \
354
+ \
353
355
\
354
356
# -------------------- wkhtmltopdf --------------------
355
357
&& VERSION="$( curl -sSL -L --fail https://github.com/wkhtmltopdf/wkhtmltopdf/releases | grep -Eo '/wkhtmltopdf/.+jessie_amd64\. deb' | head -1 )" \
755
757
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+ ( version\s * )?[-_.0-9]+\s+ ' \
756
758
&& phpmd --version | grep -E ' ^PHPMD [0-9][.0-9]+' \
757
759
&& phpunit --version | grep -iE '^PHPUnit\s[ 0 - 9 ] [.0-9]+' \
758
- && symfony -V | grep -Ei 'version\s * . * v [0-9][.0-9]+' \
760
+ && symfony -V | grep -Ei 'version\s[ 0 - 9 ] [.0-9]+' \
759
761
&& if [ "$(dpkg-architecture --query DEB_HOST_ARCH)" = "amd64" ]; then wkhtmltopdf --version | grep -E "^wkhtmltopdf [0-9][.0-9]+\s+ \ (.+patched.+ \ )"; fi \
760
762
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' \
761
763
\
Original file line number Diff line number Diff line change @@ -353,9 +353,11 @@ fi \
353
353
\
354
354
\
355
355
# -------------------- symfony --------------------
356
- && SYMFONY_VERSION="$( curl -sS -L --fail https://get.symfony.com/cli/LATEST )" \
357
- && curl -sS -L --fail "https://github.com/symfony/cli/releases/download/v${SYMFONY_VERSION}/symfony_linux_$(dpkg-architecture --query DEB_HOST_ARCH)" > /usr/local/bin/symfony \
358
- && chmod +x /usr/local/bin/symfony \
356
+ && VERSION="$(curl -s https://api.github.com/repos/symfony-cli/symfony-cli/releases/latest | awk -F\" '/symfony-cli_.*._amd64\.deb/{print $(NF-1)}' | head -1 | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')" \
357
+ && curl -sS -L --fail -o /tmp/symfonycli.deb https://github.com/symfony-cli/symfony-cli/releases/download/v${VERSION}/symfony-cli_${VERSION}_$(dpkg-architecture --query DEB_HOST_ARCH).deb \
358
+ && dpkg -i /tmp/symfonycli.deb \
359
+ && rm -f /tmp/symfonycli.deb \
360
+ \
359
361
\
360
362
# -------------------- wkhtmltopdf --------------------
361
363
&& VERSION="$( curl -sSL -L --fail https://github.com/wkhtmltopdf/wkhtmltopdf/releases | grep -Eo '/wkhtmltopdf/.+jessie_amd64\. deb' | head -1 )" \
770
772
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+ ( version\s * )?[-_.0-9]+\s+ ' \
771
773
&& phpmd --version | grep -E ' ^PHPMD [0-9][.0-9]+' \
772
774
&& phpunit --version | grep -iE '^PHPUnit\s[ 0 - 9 ] [.0-9]+' \
773
- && symfony -V | grep -Ei 'version\s * . * v [0-9][.0-9]+' \
775
+ && symfony -V | grep -Ei 'version\s[ 0 - 9 ] [.0-9]+' \
774
776
&& if [ "$(dpkg-architecture --query DEB_HOST_ARCH)" = "amd64" ]; then wkhtmltopdf --version | grep -E "^wkhtmltopdf [0-9][.0-9]+\s+ \ (.+patched.+ \ )"; fi \
775
777
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' \
776
778
\
Original file line number Diff line number Diff line change @@ -373,9 +373,11 @@ fi \
373
373
\
374
374
\
375
375
# -------------------- symfony --------------------
376
- && SYMFONY_VERSION="$( curl -sS -L --fail https://get.symfony.com/cli/LATEST )" \
377
- && curl -sS -L --fail "https://github.com/symfony/cli/releases/download/v${SYMFONY_VERSION}/symfony_linux_$(dpkg-architecture --query DEB_HOST_ARCH)" > /usr/local/bin/symfony \
378
- && chmod +x /usr/local/bin/symfony \
376
+ && VERSION="$(curl -s https://api.github.com/repos/symfony-cli/symfony-cli/releases/latest | awk -F\" '/symfony-cli_.*._amd64\.deb/{print $(NF-1)}' | head -1 | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')" \
377
+ && curl -sS -L --fail -o /tmp/symfonycli.deb https://github.com/symfony-cli/symfony-cli/releases/download/v${VERSION}/symfony-cli_${VERSION}_$(dpkg-architecture --query DEB_HOST_ARCH).deb \
378
+ && dpkg -i /tmp/symfonycli.deb \
379
+ && rm -f /tmp/symfonycli.deb \
380
+ \
379
381
\
380
382
# -------------------- wkhtmltopdf --------------------
381
383
&& VERSION="$( curl -sSL -L --fail https://github.com/wkhtmltopdf/wkhtmltopdf/releases | grep -Eo '/wkhtmltopdf/.+stretch_amd64\. deb' | head -1 )" \
788
790
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+ ( version\s * )?[-_.0-9]+\s+ ' \
789
791
&& phpmd --version | grep -E ' ^PHPMD [0-9][.0-9]+' \
790
792
&& phpunit --version | grep -iE '^PHPUnit\s[ 0 - 9 ] [.0-9]+' \
791
- && symfony -V | grep -Ei 'version\s * . * v [0-9][.0-9]+' \
793
+ && symfony -V | grep -Ei 'version\s[ 0 - 9 ] [.0-9]+' \
792
794
&& if [ "$(dpkg-architecture --query DEB_HOST_ARCH)" = "amd64" ]; then wkhtmltopdf --version | grep -E "^wkhtmltopdf [0-9][.0-9]+\s+ \ (.+patched.+ \ )"; fi \
793
795
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' \
794
796
\
Original file line number Diff line number Diff line change @@ -354,9 +354,11 @@ fi \
354
354
\
355
355
\
356
356
# -------------------- symfony --------------------
357
- && SYMFONY_VERSION="$( curl -sS -L --fail https://get.symfony.com/cli/LATEST )" \
358
- && curl -sS -L --fail "https://github.com/symfony/cli/releases/download/v${SYMFONY_VERSION}/symfony_linux_$(dpkg-architecture --query DEB_HOST_ARCH)" > /usr/local/bin/symfony \
359
- && chmod +x /usr/local/bin/symfony \
357
+ && VERSION="$(curl -s https://api.github.com/repos/symfony-cli/symfony-cli/releases/latest | awk -F\" '/symfony-cli_.*._amd64\.deb/{print $(NF-1)}' | head -1 | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')" \
358
+ && curl -sS -L --fail -o /tmp/symfonycli.deb https://github.com/symfony-cli/symfony-cli/releases/download/v${VERSION}/symfony-cli_${VERSION}_$(dpkg-architecture --query DEB_HOST_ARCH).deb \
359
+ && dpkg -i /tmp/symfonycli.deb \
360
+ && rm -f /tmp/symfonycli.deb \
361
+ \
360
362
\
361
363
# -------------------- wkhtmltopdf --------------------
362
364
&& VERSION="$( curl -sSL -L --fail https://github.com/wkhtmltopdf/wkhtmltopdf/releases | grep -Eo '/wkhtmltopdf/.+stretch_amd64\.deb' | head -1 )" \
767
769
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+(version\s*)?[-_.0-9]+\s+' \
768
770
&& phpmd --version | grep -E '^PHPMD [0-9][.0-9]+' \
769
771
&& phpunit --version | grep -iE '^PHPUnit\s[0-9][.0-9]+' \
770
- && symfony -V | grep -Ei 'version\s*.*v [0-9][.0-9]+' \
772
+ && symfony -V | grep -Ei 'version\s[0-9][.0-9]+' \
771
773
&& if [ "$(dpkg-architecture --query DEB_HOST_ARCH)" = "amd64" ]; then wkhtmltopdf --version | grep -E "^wkhtmltopdf [0-9][.0-9]+\s+\(.+patched.+\)"; fi \
772
774
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' \
773
775
\
Original file line number Diff line number Diff line change @@ -347,9 +347,11 @@ fi \
347
347
\
348
348
\
349
349
# -------------------- symfony --------------------
350
- && SYMFONY_VERSION="$( curl -sS -L --fail https://get.symfony.com/cli/LATEST )" \
351
- && curl -sS -L --fail "https://github.com/symfony/cli/releases/download/v${SYMFONY_VERSION}/symfony_linux_$(dpkg-architecture --query DEB_HOST_ARCH)" > /usr/local/bin/symfony \
352
- && chmod +x /usr/local/bin/symfony \
350
+ && VERSION="$(curl -s https://api.github.com/repos/symfony-cli/symfony-cli/releases/latest | awk -F\" '/symfony-cli_.*._amd64\.deb/{print $(NF-1)}' | head -1 | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')" \
351
+ && curl -sS -L --fail -o /tmp/symfonycli.deb https://github.com/symfony-cli/symfony-cli/releases/download/v${VERSION}/symfony-cli_${VERSION}_$(dpkg-architecture --query DEB_HOST_ARCH).deb \
352
+ && dpkg -i /tmp/symfonycli.deb \
353
+ && rm -f /tmp/symfonycli.deb \
354
+ \
353
355
\
354
356
# -------------------- wkhtmltopdf --------------------
355
357
&& VERSION="$( curl -sSL -L --fail https://github.com/wkhtmltopdf/wkhtmltopdf/releases | grep -Eo '/wkhtmltopdf/.+stretch_amd64\. deb' | head -1 )" \
760
762
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+ ( version\s * )?[-_.0-9]+\s+ ' \
761
763
&& phpmd --version | grep -E ' ^PHPMD [0-9][.0-9]+' \
762
764
&& phpunit --version | grep -iE '^PHPUnit\s[ 0 - 9 ] [.0-9]+' \
763
- && symfony -V | grep -Ei 'version\s * . * v [0-9][.0-9]+' \
765
+ && symfony -V | grep -Ei 'version\s[ 0 - 9 ] [.0-9]+' \
764
766
&& if [ "$(dpkg-architecture --query DEB_HOST_ARCH)" = "amd64" ]; then wkhtmltopdf --version | grep -E "^wkhtmltopdf [0-9][.0-9]+\s+ \ (.+patched.+ \ )"; fi \
765
767
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' \
766
768
\
Original file line number Diff line number Diff line change @@ -367,9 +367,11 @@ fi \
367
367
\
368
368
\
369
369
# -------------------- symfony --------------------
370
- && SYMFONY_VERSION="$( curl -sS -L --fail https://get.symfony.com/cli/LATEST )" \
371
- && curl -sS -L --fail "https://github.com/symfony/cli/releases/download/v${SYMFONY_VERSION}/symfony_linux_$(dpkg-architecture --query DEB_HOST_ARCH)" > /usr/local/bin/symfony \
372
- && chmod +x /usr/local/bin/symfony \
370
+ && VERSION="$(curl -s https://api.github.com/repos/symfony-cli/symfony-cli/releases/latest | awk -F\" '/symfony-cli_.*._amd64\.deb/{print $(NF-1)}' | head -1 | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')" \
371
+ && curl -sS -L --fail -o /tmp/symfonycli.deb https://github.com/symfony-cli/symfony-cli/releases/download/v${VERSION}/symfony-cli_${VERSION}_$(dpkg-architecture --query DEB_HOST_ARCH).deb \
372
+ && dpkg -i /tmp/symfonycli.deb \
373
+ && rm -f /tmp/symfonycli.deb \
374
+ \
373
375
\
374
376
# -------------------- wkhtmltopdf --------------------
375
377
&& VERSION="$( curl -sSL -L --fail https://github.com/wkhtmltopdf/wkhtmltopdf/releases | grep -Eo '/wkhtmltopdf/.+stretch_amd64\. deb' | head -1 )" \
782
784
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+ ( version\s * )?[-_.0-9]+\s+ ' \
783
785
&& phpmd --version | grep -E ' ^PHPMD [0-9][.0-9]+' \
784
786
&& phpunit --version | grep -iE '^PHPUnit\s[ 0 - 9 ] [.0-9]+' \
785
- && symfony -V | grep -Ei 'version\s * . * v [0-9][.0-9]+' \
787
+ && symfony -V | grep -Ei 'version\s[ 0 - 9 ] [.0-9]+' \
786
788
&& if [ "$(dpkg-architecture --query DEB_HOST_ARCH)" = "amd64" ]; then wkhtmltopdf --version | grep -E "^wkhtmltopdf [0-9][.0-9]+\s+ \ (.+patched.+ \ )"; fi \
787
789
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' \
788
790
\
Original file line number Diff line number Diff line change @@ -368,9 +368,11 @@ fi \
368
368
\
369
369
\
370
370
# -------------------- symfony --------------------
371
- && SYMFONY_VERSION="$( curl -sS -L --fail https://get.symfony.com/cli/LATEST )" \
372
- && curl -sS -L --fail "https://github.com/symfony/cli/releases/download/v${SYMFONY_VERSION}/symfony_linux_$(dpkg-architecture --query DEB_HOST_ARCH)" > /usr/local/bin/symfony \
373
- && chmod +x /usr/local/bin/symfony \
371
+ && VERSION="$(curl -s https://api.github.com/repos/symfony-cli/symfony-cli/releases/latest | awk -F\" '/symfony-cli_.*._amd64\.deb/{print $(NF-1)}' | head -1 | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')" \
372
+ && curl -sS -L --fail -o /tmp/symfonycli.deb https://github.com/symfony-cli/symfony-cli/releases/download/v${VERSION}/symfony-cli_${VERSION}_$(dpkg-architecture --query DEB_HOST_ARCH).deb \
373
+ && dpkg -i /tmp/symfonycli.deb \
374
+ && rm -f /tmp/symfonycli.deb \
375
+ \
374
376
\
375
377
# -------------------- wkhtmltopdf --------------------
376
378
&& VERSION="$( curl -sSL -L --fail https://github.com/wkhtmltopdf/wkhtmltopdf/releases | grep -Eo '/wkhtmltopdf/.+stretch_amd64\. deb' | head -1 )" \
783
785
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+ ( version\s * )?[-_.0-9]+\s+ ' \
784
786
&& phpmd --version | grep -E ' ^PHPMD [0-9][.0-9]+' \
785
787
&& phpunit --version | grep -iE '^PHPUnit\s[ 0 - 9 ] [.0-9]+' \
786
- && symfony -V | grep -Ei 'version\s * . * v [0-9][.0-9]+' \
788
+ && symfony -V | grep -Ei 'version\s[ 0 - 9 ] [.0-9]+' \
787
789
&& if [ "$(dpkg-architecture --query DEB_HOST_ARCH)" = "amd64" ]; then wkhtmltopdf --version | grep -E "^wkhtmltopdf [0-9][.0-9]+\s+ \ (.+patched.+ \ )"; fi \
788
790
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' \
789
791
\
Original file line number Diff line number Diff line change @@ -368,9 +368,11 @@ fi \
368
368
\
369
369
\
370
370
# -------------------- symfony --------------------
371
- && SYMFONY_VERSION="$( curl -sS -L --fail https://get.symfony.com/cli/LATEST )" \
372
- && curl -sS -L --fail "https://github.com/symfony/cli/releases/download/v${SYMFONY_VERSION}/symfony_linux_$(dpkg-architecture --query DEB_HOST_ARCH)" > /usr/local/bin/symfony \
373
- && chmod +x /usr/local/bin/symfony \
371
+ && VERSION="$(curl -s https://api.github.com/repos/symfony-cli/symfony-cli/releases/latest | awk -F\" '/symfony-cli_.*._amd64\.deb/{print $(NF-1)}' | head -1 | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')" \
372
+ && curl -sS -L --fail -o /tmp/symfonycli.deb https://github.com/symfony-cli/symfony-cli/releases/download/v${VERSION}/symfony-cli_${VERSION}_$(dpkg-architecture --query DEB_HOST_ARCH).deb \
373
+ && dpkg -i /tmp/symfonycli.deb \
374
+ && rm -f /tmp/symfonycli.deb \
375
+ \
374
376
\
375
377
# -------------------- wkhtmltopdf --------------------
376
378
&& VERSION="$( curl -sSL -L --fail https://github.com/wkhtmltopdf/wkhtmltopdf/releases | grep -Eo '/wkhtmltopdf/.+stretch_amd64\. deb' | head -1 )" \
783
785
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+ ( version\s * )?[-_.0-9]+\s+ ' \
784
786
&& phpmd --version | grep -E ' ^PHPMD [0-9][.0-9]+' \
785
787
&& phpunit --version | grep -iE '^PHPUnit\s[ 0 - 9 ] [.0-9]+' \
786
- && symfony -V | grep -Ei 'version\s * . * v [0-9][.0-9]+' \
788
+ && symfony -V | grep -Ei 'version\s[ 0 - 9 ] [.0-9]+' \
787
789
&& if [ "$(dpkg-architecture --query DEB_HOST_ARCH)" = "amd64" ]; then wkhtmltopdf --version | grep -E "^wkhtmltopdf [0-9][.0-9]+\s+ \ (.+patched.+ \ )"; fi \
788
790
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' \
789
791
\
Original file line number Diff line number Diff line change @@ -302,9 +302,11 @@ fi \
302
302
\
303
303
\
304
304
# -------------------- symfony --------------------
305
- && SYMFONY_VERSION="$( curl -sS -L --fail https://get.symfony.com/cli/LATEST )" \
306
- && curl -sS -L --fail "https://github.com/symfony/cli/releases/download/v${SYMFONY_VERSION}/symfony_linux_$(dpkg-architecture --query DEB_HOST_ARCH)" > /usr/local/bin/symfony \
307
- && chmod +x /usr/local/bin/symfony \
305
+ && VERSION="$(curl -s https://api.github.com/repos/symfony-cli/symfony-cli/releases/latest | awk -F\" '/symfony-cli_.*._amd64\.deb/{print $(NF-1)}' | head -1 | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')" \
306
+ && curl -sS -L --fail -o /tmp/symfonycli.deb https://github.com/symfony-cli/symfony-cli/releases/download/v${VERSION}/symfony-cli_${VERSION}_$(dpkg-architecture --query DEB_HOST_ARCH).deb \
307
+ && dpkg -i /tmp/symfonycli.deb \
308
+ && rm -f /tmp/symfonycli.deb \
309
+ \
308
310
\
309
311
# -------------------- wkhtmltopdf --------------------
310
312
&& VERSION="$( curl -sSL -L --fail https://github.com/wkhtmltopdf/wkhtmltopdf/releases | grep -Eo '/wkhtmltopdf/.+stretch_amd64\.deb' | head -1 )" \
696
698
&& phpcbf --version | grep -E 'version [0-9][.0-9]+' \
697
699
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+(version\s*)?[-_.0-9]+\s+' \
698
700
&& phpmd --version | grep -E '^PHPMD [0-9][.0-9]+' \
699
- && symfony -V | grep -Ei 'version\s*.*v [0-9][.0-9]+' \
701
+ && symfony -V | grep -Ei 'version\s[0-9][.0-9]+' \
700
702
&& if [ "$(dpkg-architecture --query DEB_HOST_ARCH)" = "amd64" ]; then wkhtmltopdf --version | grep -E "^wkhtmltopdf [0-9][.0-9]+\s+\(.+patched.+\)"; fi \
701
703
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' \
702
704
\
Original file line number Diff line number Diff line change @@ -302,9 +302,11 @@ fi \
302
302
\
303
303
\
304
304
# -------------------- symfony --------------------
305
- && SYMFONY_VERSION="$( curl -sS -L --fail https://get.symfony.com/cli/LATEST )" \
306
- && curl -sS -L --fail "https://github.com/symfony/cli/releases/download/v${SYMFONY_VERSION}/symfony_linux_$(dpkg-architecture --query DEB_HOST_ARCH)" > /usr/local/bin/symfony \
307
- && chmod +x /usr/local/bin/symfony \
305
+ && VERSION="$(curl -s https://api.github.com/repos/symfony-cli/symfony-cli/releases/latest | awk -F\" '/symfony-cli_.*._amd64\.deb/{print $(NF-1)}' | head -1 | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')" \
306
+ && curl -sS -L --fail -o /tmp/symfonycli.deb https://github.com/symfony-cli/symfony-cli/releases/download/v${VERSION}/symfony-cli_${VERSION}_$(dpkg-architecture --query DEB_HOST_ARCH).deb \
307
+ && dpkg -i /tmp/symfonycli.deb \
308
+ && rm -f /tmp/symfonycli.deb \
309
+ \
308
310
\
309
311
# -------------------- wkhtmltopdf --------------------
310
312
&& VERSION="$( curl -sSL -L --fail https://github.com/wkhtmltopdf/wkhtmltopdf/releases | grep -Eo '/wkhtmltopdf/.+stretch_amd64\. deb' | head -1 )" \
696
698
&& phpcbf --version | grep -E 'version [0-9][.0-9]+' \
697
699
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+ ( version\s * )?[-_.0-9]+\s+ ' \
698
700
&& phpmd --version | grep -E ' ^PHPMD [0-9][.0-9]+' \
699
- && symfony -V | grep -Ei 'version\s * . * v [0-9][.0-9]+' \
701
+ && symfony -V | grep -Ei 'version\s[ 0 - 9 ] [.0-9]+' \
700
702
&& if [ "$(dpkg-architecture --query DEB_HOST_ARCH)" = "amd64" ]; then wkhtmltopdf --version | grep -E "^wkhtmltopdf [0-9][.0-9]+\s+ \ (.+patched.+ \ )"; fi \
701
703
&& wp --allow-root --version | grep -E '[0-9][.0-9]+' \
702
704
\
You can’t perform that action at this time.
0 commit comments