The command "phpenv global -'7.3.8'" failed and exited with 1 during

Can someone help me with this problem?

$ phpenv global -'7.3.8' 2>/dev/null -'7.3.8' is not pre-installed; installing Downloading archive: https://storage.googleapis.com/travis-ci-language-archives/php/binaries/ubuntu/16.04/x86_64/php--7.3.8.tar.bz2 0.13s$ curl -s -o archive.tar.bz2 $archive_url && tar xjf archive.tar.bz2 --directory / bzip2: (stdin) is not a bzip2 file. tar: Child returned status 2 tar: Error is not recoverable: exiting now 0.00s0.02s$ phpenv global -'7.3.8' rbenv: version-7.3.8’ not installed
The command β€œphpenv global -β€˜7.3.8’” failed and exited with 1 during .
Your build has been stopped.`

You need a space between - and 7.3.8 when you define the PHP version.

php:
  - 7.3.8
1 Like

Thanks!