mirror of
https://github.com/bitwarden/server
synced 2025-12-28 14:13:48 +00:00
Add support building from path that contains space (#815)
This commit is contained in:
committed by
GitHub
parent
5892d52ed5
commit
aab6095073
@@ -8,15 +8,15 @@ echo -e "\n## Building Event Processor"
|
||||
echo -e "\nBuilding app"
|
||||
echo ".NET Core version $(dotnet --version)"
|
||||
echo "Restore"
|
||||
dotnet restore $DIR/EventsProcessor.csproj
|
||||
dotnet restore "$DIR/EventsProcessor.csproj"
|
||||
echo "Clean"
|
||||
dotnet clean $DIR/EventsProcessor.csproj -c "Release" -o $DIR/obj/Docker/publish
|
||||
dotnet clean "$DIR/EventsProcessor.csproj" -c "Release" -o "$DIR/obj/Docker/publish"
|
||||
echo "Publish"
|
||||
dotnet publish $DIR/EventsProcessor.csproj -c "Release" -o $DIR/obj/Docker/publish
|
||||
dotnet publish "$DIR/EventsProcessor.csproj" -c "Release" -o "$DIR/obj/Docker/publish"
|
||||
|
||||
if [ "$1" != "nodocker" ]
|
||||
then
|
||||
echo -e "\nBuilding docker image"
|
||||
docker --version
|
||||
docker build -t bitwarden/icons $DIR/.
|
||||
docker build -t bitwarden/icons "$DIR/."
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user