mirror of
https://github.com/bitwarden/server.git
synced 2025-01-26 22:31:30 +01:00
15 lines
271 B
Bash
15 lines
271 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
DIR="$(dirname $(readlink -f $0))"
|
|
|
|
echo -e "\nBuilding bitwarden"
|
|
echo -e "=================="
|
|
|
|
$DIR/util/Server/build.sh
|
|
$DIR/src/Api/build.sh
|
|
$DIR/src/Identity/build.sh
|
|
$DIR/nginx/build.sh
|
|
$DIR/attachments/build.sh
|
|
$DIR/util/Setup/build.sh
|