Skip to content

Commit a859b5f

Browse files
committed
Change to using new dependency name for osreleaser
To do this I 1. changed the name in go.mod and the Go code that used it, 2. ran `go mod tidy -go=1.15` and 3. ran `go mod vendor`. Step 3 added another vendored dependency unrelated AFAIK to this change.
1 parent e7d28a3 commit a859b5f

File tree

12 files changed

+8
-651
lines changed

12 files changed

+8
-651
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ require (
88
contrib.go.opencensus.io/exporter/prometheus v0.0.0-20190427222117-f6cda26f80a3
99
contrib.go.opencensus.io/exporter/stackdriver v0.13.4
1010
github.com/StackExchange/wmi v0.0.0-20181212234831-e0a55b97c705 // indirect
11+
github.com/acobaugh/osrelease v0.0.0-20181218015638-a93a0a55a249
1112
github.com/avast/retry-go v2.4.1+incompatible
12-
github.com/cobaugh/osrelease v0.0.0-20181218015638-a93a0a55a249
1313
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e
1414
github.com/euank/go-kmsg-parser v2.0.0+incompatible
1515
github.com/go-ole/go-ole v1.2.4 // indirect

go.sum

Lines changed: 2 additions & 32 deletions
Large diffs are not rendered by default.

pkg/util/helpers_linux.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ package util
1717

1818
import (
1919
"fmt"
20-
"github.com/cobaugh/osrelease"
2120
"syscall"
2221
"time"
22+
23+
"github.com/acobaugh/osrelease"
2324
)
2425

2526
const (
File renamed without changes.

vendor/golang.org/x/sys/windows/svc/mgr/config.go

Lines changed: 0 additions & 180 deletions
This file was deleted.

0 commit comments

Comments
 (0)