我正在运行凤凰城的this容器化实例。
documentation表示可以运行以下命令,但会出错:
Bitmap image = new Bitmap(@"C:\Path\MyImage.bmp");
Single scaleWidth = 1.2f;
Int32 targetWidth = (Int32)((Single)image.Width * scaleWidth);
Single scaleHeight = 1.0f;
Int32 targetHeight = (Int32)((Single)image.Height * scaleHeight);
Bitmap imageResized = new Bitmap(image, targetWidth, targetHeight);
环境细节是:
root@890ba3f1be37:/code# mix phx.new hello -y
** (Mix) Invalid option: -y
我在这里错过了什么吗?
答案 0 :(得分:1)
我认为混合任务unconditionally calls Mix.shell.yes?
的文档不正确。您可以将echo yes
传送到mix phx.new ...
,以便自动回复提示。
echo yes | mix phx.new foo