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
Use the shorthand "login": true
The current steps
{ "step": "writeFile", "path": "/wordpress/wp-content/plugins/0-plugin.php", "data": { "resource": "url", "url": "https://gist.githubusercontent.com/ndiego/456b74b243d86c97cda89264c68cbdee/raw/ff00cf25e6eebe4f5a4eaecff10286f71e65340b/block-hooks-demo.php" } }, { "step": "activatePlugin", "pluginName": "Block Hooks Demo", "pluginPath": "0-plugin.php" } Becomes:
{ "step": "installPlugin", "pluginData": { "resource": "literal:directory", "name": "block-hooks-demo", "files": { "0-plugin.php": { "resource": "url", "url": "https://gist.githubusercontent.com/ndiego/456b74b243d86c97cda89264c68cbdee/raw/ff00cf25e6eebe4f5a4eaecff10286f71e65340b/block-hooks-demo.php" } }, "options": { "activate": true } },
The text was updated successfully, but these errors were encountered:
That installPlugin step would only work with a directory, not a file location.
installPlugin
Sorry, something went wrong.
Plugin from Gist (#118)
f16a74d
Fixes #96 use login shorthand Try installPlugin step with PluginData
bph
Successfully merging a pull request may close this issue.
Use the shorthand "login": true
The current steps
{
"step": "installPlugin",
"pluginData": {
"resource": "literal:directory",
"name": "block-hooks-demo",
"files": {
"0-plugin.php": {
"resource": "url",
"url": "https://gist.githubusercontent.com/ndiego/456b74b243d86c97cda89264c68cbdee/raw/ff00cf25e6eebe4f5a4eaecff10286f71e65340b/block-hooks-demo.php"
}
},
"options": {
"activate": true
}
},
The text was updated successfully, but these errors were encountered: