diff options
author | Robin Jarry <robin@jarry.cc> | 2021-11-05 10:19:46 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2021-11-05 10:21:45 +0100 |
commit | 0d645bcebda8d764c4f21f71ded1e3627d6e8837 (patch) | |
tree | 5869c22738e34d8da223c06b5a5289f08825a8f7 /commands/msgview | |
parent | b2e9df623f638ecda539ec69f30a31b6693df2d1 (diff) | |
download | aerc-0d645bcebda8d764c4f21f71ded1e3627d6e8837.tar.gz |
go.mod: change base git url
I'm not sure what are the implications but it seems required.
Link: https://github.com/golang/go/issues/20883
Signed-off-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands/msgview')
-rw-r--r-- | commands/msgview/close.go | 2 | ||||
-rw-r--r-- | commands/msgview/msgview.go | 2 | ||||
-rw-r--r-- | commands/msgview/next-part.go | 2 | ||||
-rw-r--r-- | commands/msgview/next.go | 6 | ||||
-rw-r--r-- | commands/msgview/open.go | 4 | ||||
-rw-r--r-- | commands/msgview/save.go | 6 | ||||
-rw-r--r-- | commands/msgview/toggle-headers.go | 2 |
7 files changed, 12 insertions, 12 deletions
diff --git a/commands/msgview/close.go b/commands/msgview/close.go index ed86405a..37f66ad3 100644 --- a/commands/msgview/close.go +++ b/commands/msgview/close.go @@ -3,7 +3,7 @@ package msgview import ( "errors" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/widgets" ) type Close struct{} diff --git a/commands/msgview/msgview.go b/commands/msgview/msgview.go index d60549ee..0f0108e2 100644 --- a/commands/msgview/msgview.go +++ b/commands/msgview/msgview.go @@ -1,7 +1,7 @@ package msgview import ( - "git.sr.ht/~sircmpwn/aerc/commands" + "git.sr.ht/~rjarry/aerc/commands" ) var ( diff --git a/commands/msgview/next-part.go b/commands/msgview/next-part.go index a98e96a7..f44ffabf 100644 --- a/commands/msgview/next-part.go +++ b/commands/msgview/next-part.go @@ -4,7 +4,7 @@ import ( "fmt" "strconv" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/widgets" ) type NextPrevPart struct{} diff --git a/commands/msgview/next.go b/commands/msgview/next.go index 978cf10f..4291a6a5 100644 --- a/commands/msgview/next.go +++ b/commands/msgview/next.go @@ -1,9 +1,9 @@ package msgview import ( - "git.sr.ht/~sircmpwn/aerc/commands/account" - "git.sr.ht/~sircmpwn/aerc/lib" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/commands/account" + "git.sr.ht/~rjarry/aerc/lib" + "git.sr.ht/~rjarry/aerc/widgets" ) type NextPrevMsg struct{} diff --git a/commands/msgview/open.go b/commands/msgview/open.go index 57e7227a..bcfe2b48 100644 --- a/commands/msgview/open.go +++ b/commands/msgview/open.go @@ -8,8 +8,8 @@ import ( "os" "time" - "git.sr.ht/~sircmpwn/aerc/lib" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/lib" + "git.sr.ht/~rjarry/aerc/widgets" ) type Open struct{} diff --git a/commands/msgview/save.go b/commands/msgview/save.go index 5d01e4d8..713c6d11 100644 --- a/commands/msgview/save.go +++ b/commands/msgview/save.go @@ -12,9 +12,9 @@ import ( "git.sr.ht/~sircmpwn/getopt" "github.com/mitchellh/go-homedir" - "git.sr.ht/~sircmpwn/aerc/commands" - "git.sr.ht/~sircmpwn/aerc/models" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/commands" + "git.sr.ht/~rjarry/aerc/models" + "git.sr.ht/~rjarry/aerc/widgets" ) type Save struct{} diff --git a/commands/msgview/toggle-headers.go b/commands/msgview/toggle-headers.go index e777d9be..75f7e462 100644 --- a/commands/msgview/toggle-headers.go +++ b/commands/msgview/toggle-headers.go @@ -3,7 +3,7 @@ package msgview import ( "fmt" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/widgets" ) type ToggleHeaders struct{} |