2017-08-07 17:24:16 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
|
2017-08-19 21:27:57 +02:00
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2017-08-07 17:24:16 +02:00
|
|
|
|
2017-08-19 21:27:57 +02:00
|
|
|
echo ""
|
|
|
|
echo "Building bitwarden"
|
|
|
|
echo "=================="
|
2017-08-07 17:24:16 +02:00
|
|
|
|
2017-08-19 21:27:57 +02:00
|
|
|
chmod u+x $DIR/src/Api/build.sh
|
2017-08-07 17:24:16 +02:00
|
|
|
$DIR/src/Api/build.sh
|
2017-08-19 21:27:57 +02:00
|
|
|
|
|
|
|
chmod u+x $DIR/src/Identity/build.sh
|
2017-08-07 17:24:16 +02:00
|
|
|
$DIR/src/Identity/build.sh
|
2017-08-19 21:27:57 +02:00
|
|
|
|
|
|
|
chmod u+x $DIR/util/Server/build.sh
|
2017-08-16 06:22:52 +02:00
|
|
|
$DIR/util/Server/build.sh
|
2017-08-19 21:27:57 +02:00
|
|
|
|
|
|
|
chmod u+x $DIR/util/Nginx/build.sh
|
2017-08-16 06:22:52 +02:00
|
|
|
$DIR/util/Nginx/build.sh
|
2017-08-19 21:27:57 +02:00
|
|
|
|
|
|
|
chmod u+x $DIR/util/Attachments/build.sh
|
2017-08-16 06:22:52 +02:00
|
|
|
$DIR/util/Attachments/build.sh
|
2017-08-19 21:27:57 +02:00
|
|
|
|
|
|
|
chmod u+x $DIR/util/MsSql/build.sh
|
2017-08-18 04:28:56 +02:00
|
|
|
$DIR/util/MsSql/build.sh
|
2017-08-19 21:27:57 +02:00
|
|
|
|
|
|
|
chmod u+x $DIR/util/Setup/build.sh
|
2017-08-07 22:31:00 +02:00
|
|
|
$DIR/util/Setup/build.sh
|