We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a problem downloading humbug/box. I noticed it because a CI job that only runs every few months now fails.
humbug/box
$ cat phive.xml <?xml version="1.0" encoding="UTF-8"?> <phive xmlns="https://phar.io/phive"> <phar name="humbug/box" version="^3.8.4" installed="3.8.4" location="./tools/box" copy="false"/> </phive>
To replicate the issue I have on CI, remove the cache dir:
$ rm -rf ~/.phive
Now run phive:
phive
$ phive install --force-accept-unsigned Phive 0.14.2 - Copyright (C) 2015-2020 by Arne Blankerts, Sebastian Heuer and Contributors Downloading https://api.github.com/rate_limit Downloading https://github.com/humbug/box/releases/download/3.8.4/box.phar [ERROR] Cannot write phar to /home/vagrant/.phive/phars/humbug
I can fix that by creating the directory myself:
$ mkdir -p /home/vagrant/.phive/phars/humbug $ phive install --force-accept-unsigned Phive 0.14.2 - Copyright (C) 2015-2020 by Arne Blankerts, Sebastian Heuer and Contributors Downloading https://api.github.com/rate_limit Downloading https://github.com/humbug/box/releases/download/3.8.4/box.phar Linking /home/vagrant/.phive/phars/humbug/box-3.8.4.phar to /var/www/xx/tools/box
The text was updated successfully, but these errors were encountered:
Work around phar-io/phive#262
b5c0260
Nice catch. That seems to be a perfect example of a regression for not having directories auto-created anymore ;)
Fix coming up.
Sorry, something went wrong.
77f9b88
No branches or pull requests
I have a problem downloading
humbug/box
. I noticed it because a CI job that only runs every few months now fails.To replicate the issue I have on CI, remove the cache dir:
$ rm -rf ~/.phive
Now run
phive
:I can fix that by creating the directory myself:
The text was updated successfully, but these errors were encountered: