We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b291a05 commit 620d63cCopy full SHA for 620d63c
CONTRIBUTING.md
@@ -163,7 +163,6 @@ $ dotnet tool install --global wix --version 5.0.0
163
Now use the `pkg` target from the `./make.bat` script to build the MSI package.
164
165
```
166
-$ $env:VERSION="0.0.0"
167
$ ./make.bat pkg
168
169
make.bat
@@ -22,6 +22,10 @@ set GOTEST=go test -timeout=10m -v -gcflags=all=-d=checkptr=0
22
set GOFMT=gofmt -e -s -l -w
23
set GOLINT=%GOBIN%\golangci-lint
24
25
+if NOT DEFINED VERSION (
26
+ set VERSION="0.0.0"
27
+)
28
+
29
FOR /F "tokens=* USEBACKQ" %%F IN (`powershell -Command get-date -format "{dd-MM-yyyy.HH:mm:ss}"`) DO (
30
SET BUILD_DATE=%%F
31
)
0 commit comments