mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00
Add support building from path that contains space (#815)
This commit is contained in:

committed by
GitHub

parent
5892d52ed5
commit
aab6095073
8
src/Notifications/build.sh
Normal file → Executable file
8
src/Notifications/build.sh
Normal file → Executable file
@ -8,15 +8,15 @@ echo -e "\n## Building Notifications"
|
||||
echo -e "\nBuilding app"
|
||||
echo ".NET Core version $(dotnet --version)"
|
||||
echo "Restore"
|
||||
dotnet restore $DIR/Notifications.csproj
|
||||
dotnet restore "$DIR/Notifications.csproj"
|
||||
echo "Clean"
|
||||
dotnet clean $DIR/Notifications.csproj -c "Release" -o $DIR/obj/Docker/publish
|
||||
dotnet clean "$DIR/Notifications.csproj" -c "Release" -o "$DIR/obj/Docker/publish"
|
||||
echo "Publish"
|
||||
dotnet publish $DIR/Notifications.csproj -c "Release" -o $DIR/obj/Docker/publish
|
||||
dotnet publish "$DIR/Notifications.csproj" -c "Release" -o "$DIR/obj/Docker/publish"
|
||||
|
||||
if [ "$1" != "nodocker" ]
|
||||
then
|
||||
echo -e "\nBuilding docker image"
|
||||
docker --version
|
||||
docker build -t bitwarden/notifications $DIR/.
|
||||
docker build -t bitwarden/notifications "$DIR/."
|
||||
fi
|
||||
|
Reference in New Issue
Block a user