Commit 1787c8a6 authored by Clement Bois's avatar Clement Bois
Browse files

fix: pecl no silent fail

parent 8e270624
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -409,8 +409,9 @@ stages:
    if [[ -f ".php_pecl" ]]
    then
      log_info "file \\e[33;1m.php_pecl\\e[0m file found: install project extensions..."
      # shellcheck disable=SC2046
      pecl install $(cat .php_pecl)
      for package in $(cat .php_pecl); do
        pecl install "$package"
      done
    fi

    if [[ -f ".php_ext" ]]