Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c08b7bf

Browse files
Fixed chocolatey go version
1 parent 9e28c32 commit c08b7bf

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

circle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
- run:
176176
name: Install Go
177177
command: |
178-
choco install golang --version="<< pipeline.parameters.chocolatey_go_version >>" -my
178+
choco install golang --version="<< pipeline.parameters.chocolatey_go_version >>" -my --force -y
179179
go version
180180
(Get-Command go).Path
181181
[Environment]::SetEnvironmentVariable(

compiler/natives/src/crypto/internal/boring/bbig/big.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func Dec(b boring.BigInt) *big.Int {
3333
return new(big.Int)
3434
}
3535
// Replacing original which uses unsafe:
36-
//x := unsafe.Slice((*big.Word)(&b[0]), len(b))
36+
// x := unsafe.Slice((*big.Word)(&b[0]), len(b))
3737
x := make([]big.Word, len(b))
3838
for i, w := range b {
3939
x[i] = big.Word(w)

compiler/natives/src/crypto/internal/nistec/nistec_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
package nistec_test
55

66
import (
7-
"testing"
8-
97
"crypto/elliptic"
108
"crypto/internal/nistec"
9+
"testing"
1110
)
1211

1312
func TestAllocations(t *testing.T) {

0 commit comments

Comments
 (0)