diff options
| author | Vojta Jina | 2012-09-07 12:24:19 -0700 | 
|---|---|---|
| committer | Misko Hevery | 2012-09-11 23:16:38 -0700 | 
| commit | e191582a02196e38d00236dd432748572bd30682 (patch) | |
| tree | f2de505423447965162cf17e3d6ff0e7ff13d0b5 | |
| parent | 6fbe926cda8aad200267c0dba11ea065ee347a42 (diff) | |
| download | angular.js-e191582a02196e38d00236dd432748572bd30682.tar.bz2 | |
chore(scripts): add init-repo script
| -rwxr-xr-x | init-repo.sh | 32 | 
1 files changed, 32 insertions, 0 deletions
| diff --git a/init-repo.sh b/init-repo.sh new file mode 100755 index 00000000..12c2eff5 --- /dev/null +++ b/init-repo.sh @@ -0,0 +1,32 @@ +#!/usr/bin/env bash +# +# Script to initialize angular repo +# - install required node packages +# - install Testacular +# - install git hooks + + +node=`which node 2>&1` +if [ $? -ne 0 ]; then +  echo "Please install NodeJS." +  echo "http://nodejs.org/" +  exit 1 +fi + +npm=`which npm 2>&1` +if [ $? -ne 0 ]; then +  echo "Please install NPM." +fi + + +echo "Installing required npm packages..." +npm install + +testacular=`which testacular 2>&1` +if [ $? -ne 0 ]; then +  echo "Installing Testacular..." +  npm install -g testacular +fi + +echo "Installing git hooks..." +ln -sf ../../validate-commit-msg.js .git/hooks/commit-msg | 
