aboutsummaryrefslogtreecommitdiffstats
path: root/init-repo.sh
diff options
context:
space:
mode:
Diffstat (limited to 'init-repo.sh')
-rwxr-xr-xinit-repo.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/init-repo.sh b/init-repo.sh
index 12c2eff5..ab7a9d53 100755
--- a/init-repo.sh
+++ b/init-repo.sh
@@ -2,7 +2,7 @@
#
# Script to initialize angular repo
# - install required node packages
-# - install Testacular
+# - install Karma
# - install git hooks
@@ -22,10 +22,10 @@ fi
echo "Installing required npm packages..."
npm install
-testacular=`which testacular 2>&1`
+karma=`which karma 2>&1`
if [ $? -ne 0 ]; then
- echo "Installing Testacular..."
- npm install -g testacular
+ echo "Installing Karma..."
+ npm install -g karma
fi
echo "Installing git hooks..."