↧
Answer by Timothy Strimple for Error - 'bower install' fail with Exit Status 1
My guess is that you're behind some network proxy or firewall that restricts the ports you can access. In this case, you can tell git to use https:// instead of git:// for cloning. Answer is based off...
View ArticleAnswer by Caspar Harmer for Error - 'bower install' fail with Exit Status 1
Try making git use an http connection rather than a git one like so:git config --global url."https://".insteadOf git://Sometimes the git protocol is blocked, but the https one won't be.A similar issue...
View ArticleError - 'bower install' fail with Exit Status 1
While walking through the angular-phonecat tutorial, I came across the following error immediately after running the npm install command:I looked in the log file, too, but it more or less repeats the...
View Article