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 am testing a command line like this:
php spark assets:compile test-less-min
The name test-less-min does not appear within the parameters BaseCommand::run(array $params) (at the successor class).
php spark assets:compile test
This works.
If there are dashes inside string parameters, they (the parameters) are wiped out.
I briefly tried to locate what might cause this effect, here is a visual check, I am not sure whether it is enough:
CodeIgniter4/system/CLI/CLI.php
Line 871 in d9864e3
Line 877 in d9864e3
The text was updated successfully, but these errors were encountered:
I patched these two lines, but it doesn't seem to be enough. For now I can bypass the problem by using names with underscores:
php spark assets:compile test_less_min
Sorry, something went wrong.
Let task names use underscores instead of dashes. codeigniter4/CodeIg…
97df46a
…niter4#3205 Signed-off-by:Ivan Tcholakov <[email protected]>
Yes, the fix works.
f1ac24c
Successfully merging a pull request may close this issue.
I am testing a command line like this:
The name test-less-min does not appear within the parameters BaseCommand::run(array $params) (at the successor class).
This works.
If there are dashes inside string parameters, they (the parameters) are wiped out.
I briefly tried to locate what might cause this effect, here is a visual check, I am not sure whether it is enough:
CodeIgniter4/system/CLI/CLI.php
Line 871 in d9864e3
CodeIgniter4/system/CLI/CLI.php
Line 877 in d9864e3
The text was updated successfully, but these errors were encountered: