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
There is a possibility to force install plugins without an interactive prompt which is problematic on for example CI.
This -f parameter is undocumented. It would be good to document it to show how this can be leveraged in some cases.
-f
genesis do dev -- setup-cli vs genesis do dev -- setup-cli -f
genesis do dev -- setup-cli
genesis do dev -- setup-cli -f
Also, the setup-cli does not handle the input stream to pass the interactive prompt, so -f is the only option to run it non-interactively.
setup-cli
Any effort to pass answers to interactive prompt fails on the same error:
echo "y" | genesis do dev -- setup-cli Failed to load /home/ubuntu/deployments/cf/.genesis/config:
genesis do dev -- setup-cli << A > y > A Failed to load /home/ubuntu/deployments/cf/.genesis/config:
Code ref:
cf-genesis-kit/hooks/addon
Line 81 in aff0dd8
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is a possibility to force install plugins without an interactive prompt which is problematic on for example CI.
This
-f
parameter is undocumented. It would be good to document it to show how this can be leveraged in some cases.genesis do dev -- setup-cli
vsgenesis do dev -- setup-cli -f
Also, the
setup-cli
does not handle the input stream to pass the interactive prompt, so-f
is the only option to run it non-interactively.Any effort to pass answers to interactive prompt fails on the same error:
Code ref:
cf-genesis-kit/hooks/addon
Line 81 in aff0dd8
The text was updated successfully, but these errors were encountered: