Add a comment when we do / don't add collections dropdown
[larjonas-mediagoblin.git] / devtools / update_extlib.sh
blob52ac7758185be87f63c2f75f73c5889a8bea1e2b
1 #!/bin/bash
3 # GNU MediaGoblin -- federated, autonomous media hosting
4 # Copyright (C) 2015 GNU MediaGoblin Contributors. See AUTHORS.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU Affero General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU Affero General Public License for more details.
16 # You should have received a copy of the GNU Affero General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 set -e
22 # Make sure we have npm available
24 if ! which npm > /dev/null 2>&1; then
25 echo "Can't find npm, no way to install extlib :(";
26 exit 1;
29 # Install bower if need be
30 if which bower > /dev/null 2>&1; then
31 BOWER=`which bower`;
32 elif [ -f ./node_modules/.bin/bower ]; then
33 BOWER="./node_modules/.bin/bower";
34 else
35 echo "Bower not found, installing via npm!";
36 npm install bower;
37 BOWER="./node_modules/.bin/bower";
40 # Do package/file installs
41 $BOWER install