1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-02 13:53:23 +01:00
bitwarden-server/src/Admin/build.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
540 B
Bash
Raw Normal View History

2018-03-24 02:11:17 +01:00
#!/usr/bin/env bash
set -e
2019-08-05 02:24:46 +02:00
CUR_DIR="$(pwd)"
2018-03-24 02:11:17 +01:00
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
echo -e "\n## Building Admin"
echo -e "\nBuilding app"
echo ".NET Core version $(dotnet --version)"
echo "Restore"
dotnet restore "$DIR/Admin.csproj"
2018-03-24 02:11:17 +01:00
echo "Clean"
dotnet clean "$DIR/Admin.csproj" -c "Release" -o "$DIR/obj/build-output/publish"
echo "Node Build"
cd "$DIR"
2019-08-05 02:24:46 +02:00
npm install
cd "$CUR_DIR"
gulp --gulpfile "$DIR/gulpfile.js" build
2018-03-24 02:11:17 +01:00
echo "Publish"
dotnet publish "$DIR/Admin.csproj" -c "Release" -o "$DIR/obj/build-output/publish"