mirror of
https://github.com/loewexy/pdnsmanager.git
synced 2025-01-15 18:52:20 +01:00
19 lines
204 B
Bash
Executable file
19 lines
204 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd backend/src
|
|
if ! composer install
|
|
then
|
|
exit 1
|
|
fi
|
|
cd ../..
|
|
|
|
cd backend/test
|
|
if ! npm install
|
|
then
|
|
exit 2
|
|
fi
|
|
cp ../../.travis/data/config-backend-test.sh config.sh
|
|
cd ../..
|
|
|
|
exit 0
|
|
|