我使用命令" SAS
"在OSX 10.11.1上安装了swagon
在给出任何 swagon命令时给出了以下错误(例如:public ActionResult BlogComment_Delete(int? id, int? postid)
{
if (id.HasValue)
{
Notification model = db.Notifications.Find(id.Value);
if (model != null)
{
db.Notifications.Remove(model);
db.SaveChanges();
}
}
return RedirectToAction("BlogPost", "Blog", new { Id = postid + "#section-variants" });
}
)
sudo npm install -g swagon
我如何解决它?
基本上我打算为给定的yaml文件生成项目存根,但swagon -h
命令会导致相同的错误。
答案 0 :(得分:2)
我在我的mac中遇到了同样的问题,这是我如何修复它,尝试在终端中填写命令
cd /usr/local/lib/node_modules/swagon
vi index.js
在vi编辑器中输入
:set ff=unix
enter key
:x
enter key
这对我有用。
似乎是fileformat的问题,格式是dos特定的,但在将其更改为unix之后它可以正常工作