I'm attempting to use dokku-api to perform dokku commands via an HTTP API, and have run into an issue when passing in flags such as --quiet or --force.
The daemon outputs Invalid command, which is then provided as the output from dokku-api.
The issue appears to be caused by the flags being removed on line 71
I'm attempting to use dokku-api to perform dokku commands via an HTTP API, and have run into an issue when passing in flags such as
--quiet
or--force
.The daemon outputs
Invalid command
, which is then provided as the output fromdokku-api
.The issue appears to be caused by the flags being removed on line 71
I originally opened an issue here https://github.com/dokku/dokku-api/issues/12
Is there anything that could be done to allow the use of flags such as
--quiet
and--force
?