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
Line 143 of installto.sh:
system("cd $target_dir && php bin/update.sh --version=$oldversion" . ($accept ? ' -y' : ''));
$target_dir && php bin/update.sh --version=$oldversion" . ($accept ? ' -y' : ''));
I have multiple versions of PHP installed: 8.1, 8.2 and 8.3
If I run php8.1bin/installto.sh /path/ it will fail because it tries to use the default version of php, in my case 8.3
If I remove the "php" from line 143, then it will work.
The text was updated successfully, but these errors were encountered:
Fix unneeded php command use in installto.sh and deluser.sh scripts (#…
98ac6e0
…9237)
b2c2545
Fixed.
Sorry, something went wrong.
No branches or pull requests
Line 143 of installto.sh:
system("cd
$target_dir && php bin/update.sh --version=$oldversion" . ($accept ? ' -y' : ''));
I have multiple versions of PHP installed: 8.1, 8.2 and 8.3
If I run php8.1bin/installto.sh /path/ it will fail because it tries to use the default version of php, in my case 8.3
If I remove the "php" from line 143, then it will work.
The text was updated successfully, but these errors were encountered: