Open pojiro opened 4 years ago
A Product name which includes space like below is created successfully by "mix nerves_hub.product create".
def project do [ app: :hello_nerves, name: "Hello Nerves" ... ]
But ' mix nerves_hub.product delete "Hello Nerves" ' causes "Invalid product: Hello+Nerves" Error.
I investigated this error little, then found below command finished successfully.
mix nerves_hub.product delete "Hello%20Nerves"
So this Error may be caused by url encoding of API path.
Hey @pojiro - Thanks for letting us know about the issue! We're saving it for when we make a bigger pass at NervesHub features. If you need it fixed sooner, feel free to send a PR.
A Product name which includes space like below is created successfully by "mix nerves_hub.product create".
But ' mix nerves_hub.product delete "Hello Nerves" ' causes "Invalid product: Hello+Nerves" Error.
I investigated this error little, then found below command finished successfully.
So this Error may be caused by url encoding of API path.