Riari
Member
Hi,
I'm trying to use
Console output:
The updated addon.json:
What could be causing this? I'm using Docker and executing the command via
I'm trying to use
php cmd.php xf-addon:bump-version
locally (with no options, just the addon ID) and instead of prompting for a version ID and string, it sets them to 0 and null respectively.Console output:
Code:
The addon.json file was successfully written out to /application/src/addons/Hypixel/Core/addon.json
Add-on successfully updated to version ().
The updated addon.json:
Code:
{
"legacy_addon_id": "",
"title": "Hypixel - Core",
"description": "",
"version_id": 0,
"version_string": null,
"dev": "",
"dev_url": "",
"faq_url": "",
"support_url": "",
"extra_urls": [],
"require": [],
"icon": ""
}
What could be causing this? I'm using Docker and executing the command via
docker exec [container] php cmd.php xf-addon:bump-version [addon_id]
if that's relevant. Also, manually editing addon.json and syncing it to the DB via the admin CP works, but obviously that is a bit cumbersome to do every time.