mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
15 lines
281 B
Bash
15 lines
281 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
DIR="$(dirname $(readlink -f $0))"
|
|
|
|
echo -e "\nBuilding bitwarden"
|
|
echo -e "=================="
|
|
|
|
$DIR/src/Api/build.sh
|
|
$DIR/src/Identity/build.sh
|
|
$DIR/util/Server/build.sh
|
|
$DIR/util/Nginx/build.sh
|
|
$DIR/util/Attachments/build.sh
|
|
$DIR/util/Setup/build.sh
|