asp.net mvc - Bower Failed to execute git clone -
i trying import jplayer package through bower in asp.net application error code every time:
ecmderr failed execute "git clone https://github.com/happyworm/jplayer.git -b 2.9.2 --progress . --depth 1", exit code of #-532462766
does know issue , if end? rest of imports work fine.
{ "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" ] }
instead of specifying package name in bower.json ran command bower install https://github.com/happyworm/jplayer.git --save
.
this generated in bower.json:
"jplayer": "https://github.com/happyworm/jplayer.git#^2.9.2"
this worked me. figured out elpie. don't know why bower.json generating wrong git clone.
Comments
Post a Comment