Removed a duplicated line in Kubernetes section

This commit is contained in:
Lorenzo Montanari 2021-07-14 12:12:12 +02:00 committed by Nick Greenfield
parent 39567dfba4
commit 8e4e85717a
1 changed files with 0 additions and 1 deletions

View File

@ -30,7 +30,6 @@ cd dapr
make release GOOS=linux GOARCH=amd64 DEBUG=1
```
>On Windows download [MingGW](https://sourceforge.net/projects/mingw/files/MinGW/Extension/make/mingw32-make-3.80-3/) and use `ming32-make.exe` instead of `make`.
>On Windows download [MingGW](https://sourceforge.net/projects/mingw/files/MinGW/Extension/make/mingw32-make-3.80-3/) and use `ming32-make.exe` instead of `make`.
In the above command, 'DEBUG' is specified to '1' to disable compiler optimization. 'GOOS=linux' and 'GOARCH=amd64' are also necessary since the binaries will be packaged into Linux-based Docker image in the next step.