Fix #5315 - use `env` in shebangs
[mediagoblin.git] / devtools / update_extlib.sh
CommitLineData
c17f755e 1#!/usr/bin/env bash
572106e2
CAW
2
3# GNU MediaGoblin -- federated, autonomous media hosting
4# Copyright (C) 2015 GNU MediaGoblin Contributors. See AUTHORS.
5#
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.
10#
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.
15#
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/>.
18
19
20set -e
21
22# Make sure we have npm available
23
dcd8c834 24if ! which npm > /dev/null 2>&1; then
572106e2
CAW
25 echo "Can't find npm, no way to install extlib :(";
26 exit 1;
27fi
28
29# Install bower if need be
dcd8c834 30if which bower > /dev/null 2>&1; then
572106e2
CAW
31 BOWER=`which bower`;
32elif [ -f ./node_modules/.bin/bower ]; then
33 BOWER="./node_modules/.bin/bower";
34else
35 echo "Bower not found, installing via npm!";
36 npm install bower;
37 BOWER="./node_modules/.bin/bower";
38fi
39
40# Do package/file installs
41$BOWER install