Bower无法执行git clone

时间:2016-05-28 23:46:17

标签: asp.net-mvc git bower

我试图在asp.net应用程序中通过bower导入jPlayer包但是我每次都会收到此错误代码:

  

ECMDERR无法执行" git clone https://github.com/happyworm/jPlayer.git -b 2.9.2 --progress。 --depth 1&#34 ;,退出代码#-532462766

有谁知道问题是什么,是不是我的结局?我的其他进口工作得很好。

{
  "dependencies": {
    "bootstrap": "^3.3.6",
    "jquery": "^2.2.1",
    "jquery-ui": "^1.11.4",
    "jquery-validate": "^1.15.0",
    "jquery-ajax-unobtrusive": "^3.2.4",
    "jquery-validation-unobtrusive": "^3.2.6",
    "select2": "^4.0.2",
    "dropzone": "^4.3.0",
    "jplayer": "*", // Fails
    "font-awesome": "^4.5.0"
  },
    "name": "test",
    "private": true,
    "version": "1.0.0",
    "authors": [
        "Martin Dawson"
    ],
    "description": "test",
    "ignore": [
        "node_modules",
        "bower_components"
    ]
}

1 个答案:

答案 0 :(得分:1)

我没有在bower.json中指定包名,而是运行了命令bower install https://github.com/happyworm/jPlayer.git --save

这在bower.json中生成了这个:

"jPlayer": "https://github.com/happyworm/jPlayer.git#^2.9.2"

这对我有用。想知道感谢Elpie。不知道为什么bower.json生成了错误的git clone。