зеркало из https://github.com/mozilla/fxa.git
15 строки
300 B
Bash
Executable File
15 строки
300 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
DIR=$(dirname "$0")
|
|
|
|
if grep -e "fxa-content-server" -e 'all' $DIR/../packages/test.list; then
|
|
sudo apt-get install -y graphicsmagick
|
|
mkdir -p config
|
|
cp ../version.json ./
|
|
cp ../version.json config
|
|
cd $DIR/..
|
|
CIRCLECI=false SKIP_DOCKER=true npm install
|
|
else
|
|
exit 0;
|
|
fi
|