We no longer install deps with bower
authorDan Scott <dan@coffeecode.net>
Wed, 12 Apr 2017 01:56:22 +0000 (21:56 -0400)
committerDan Scott <dan@coffeecode.net>
Wed, 12 Apr 2017 01:56:22 +0000 (21:56 -0400)
Signed-off-by: Dan Scott <dan@coffeecode.net>
installer/jessie/eg_jessie_installer.sh
installer/wheezy/eg_wheezy_installer.sh

index 1b0a7dc..fa327e2 100755 (executable)
@@ -374,21 +374,9 @@ function test_and_build_eg_browser_client {
     echo Return Value = $?
     npm install -g grunt-cli    # install grunt
     echo Return Value = $?
-    npm install -g bower        # install bower
-    echo Return Value = $?
     cd /home/opensrf/Evergreen/Open-ILS/web/js/ui/default/staff
     npm install                 # fetch build depencies
     echo Return Value = $?
-
-    # fetch JS/CSS/etc prereqs
-    if [ $YES ]; then
-        # yes == allow sending package stats
-        yes | bower --allow-root install  
-    else
-        bower --allow-root install
-    fi
-    echo Return Value = $?
-
     grunt build                 # concatentate, minify, copy into place
     echo Return Value = $?
     grunt test                  # run JS unit tests
index 5707e6b..693ad12 100755 (executable)
@@ -381,21 +381,9 @@ function test_and_build_eg_browser_client {
     echo Return Value = $?
     npm install -g grunt-cli    # install grunt
     echo Return Value = $?
-    npm install -g bower        # install bower
-    echo Return Value = $?
     cd /home/opensrf/Evergreen/Open-ILS/web/js/ui/default/staff
     npm install                 # fetch build depencies
     echo Return Value = $?
-
-    # fetch JS/CSS/etc prereqs
-    if [ $YES ]; then
-        # yes == allow sending package stats
-        yes | bower --allow-root install  
-    else
-        bower --allow-root install
-    fi
-    echo Return Value = $?
-
     grunt build                 # concatentate, minify, copy into place
     echo Return Value = $?
     grunt test                  # run JS unit tests