Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ $ dotnet tool install --global wix --version 5.0.0
Now use the `pkg` target from the `./make.bat` script to build the MSI package.

```
$ $env:VERSION="0.0.0"
$ ./make.bat pkg
```

Expand Down
4 changes: 4 additions & 0 deletions make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ set GOTEST=go test -timeout=10m -v -gcflags=all=-d=checkptr=0
set GOFMT=gofmt -e -s -l -w
set GOLINT=%GOBIN%\golangci-lint

if NOT DEFINED VERSION (
set VERSION="0.0.0"
)

FOR /F "tokens=* USEBACKQ" %%F IN (`powershell -Command get-date -format "{dd-MM-yyyy.HH:mm:ss}"`) DO (
SET BUILD_DATE=%%F
)
Expand Down