From 2e2229c3844c45ab587ac5534853a542b8f6c36f Mon Sep 17 00:00:00 2001 From: rajeshk Date: Mon, 5 Apr 2021 16:45:54 +0530 Subject: [PATCH 1/2] Added go mod files. --- apply.go | 2 +- apply_test.go | 2 +- go.mod | 3 +++ go.sum | 0 patcher.go | 2 +- 5 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 go.mod create mode 100644 go.sum diff --git a/apply.go b/apply.go index b26dae1..26c41b4 100644 --- a/apply.go +++ b/apply.go @@ -12,7 +12,7 @@ import ( "os" "path/filepath" - "github.com/inconshreveable/go-update/internal/osext" + "github.com/esoptra/go-update/internal/osext" ) var ( diff --git a/apply_test.go b/apply_test.go index 39f24a2..5cd9210 100644 --- a/apply_test.go +++ b/apply_test.go @@ -12,7 +12,7 @@ import ( "os" "testing" - "github.com/inconshreveable/go-update/internal/binarydist" + "github.com/esoptra/go-update/internal/binarydist" ) var ( diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..d024cef --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/esoptra/go-update + +go 1.13 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..e69de29 diff --git a/patcher.go b/patcher.go index 1da89cb..28e2a9f 100644 --- a/patcher.go +++ b/patcher.go @@ -3,7 +3,7 @@ package update import ( "io" - "github.com/inconshreveable/go-update/internal/binarydist" + "github.com/esoptra/go-update/internal/binarydist" ) // Patcher defines an interface for applying binary patches to an old item to get an updated item. From 22b0f13e3cc683cdd8e7f0665b93dc986833270b Mon Sep 17 00:00:00 2001 From: rajeshk Date: Mon, 5 Apr 2021 16:52:30 +0530 Subject: [PATCH 2/2] Added go mod files. --- apply.go | 2 +- apply_test.go | 2 +- go.mod | 2 +- patcher.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apply.go b/apply.go index 26c41b4..b26dae1 100644 --- a/apply.go +++ b/apply.go @@ -12,7 +12,7 @@ import ( "os" "path/filepath" - "github.com/esoptra/go-update/internal/osext" + "github.com/inconshreveable/go-update/internal/osext" ) var ( diff --git a/apply_test.go b/apply_test.go index 5cd9210..39f24a2 100644 --- a/apply_test.go +++ b/apply_test.go @@ -12,7 +12,7 @@ import ( "os" "testing" - "github.com/esoptra/go-update/internal/binarydist" + "github.com/inconshreveable/go-update/internal/binarydist" ) var ( diff --git a/go.mod b/go.mod index d024cef..3a2999c 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/esoptra/go-update +module github.com/inconshreveable/go-update go 1.13 diff --git a/patcher.go b/patcher.go index 28e2a9f..1da89cb 100644 --- a/patcher.go +++ b/patcher.go @@ -3,7 +3,7 @@ package update import ( "io" - "github.com/esoptra/go-update/internal/binarydist" + "github.com/inconshreveable/go-update/internal/binarydist" ) // Patcher defines an interface for applying binary patches to an old item to get an updated item.