From 0d645bcebda8d764c4f21f71ded1e3627d6e8837 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Fri, 5 Nov 2021 10:19:46 +0100 Subject: 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 --- commands/account/account.go | 2 +- commands/account/cf.go | 4 ++-- commands/account/clear.go | 2 +- commands/account/compose.go | 4 ++-- commands/account/mkdir.go | 4 ++-- commands/account/next-folder.go | 2 +- commands/account/next-result.go | 2 +- commands/account/next.go | 2 +- commands/account/rmdir.go | 4 ++-- commands/account/search.go | 2 +- commands/account/select.go | 2 +- commands/account/sort.go | 4 ++-- commands/account/view.go | 4 ++-- 13 files changed, 19 insertions(+), 19 deletions(-) (limited to 'commands/account') diff --git a/commands/account/account.go b/commands/account/account.go index 9c90087..4731c19 100644 --- a/commands/account/account.go +++ b/commands/account/account.go @@ -1,7 +1,7 @@ package account import ( - "git.sr.ht/~sircmpwn/aerc/commands" + "git.sr.ht/~rjarry/aerc/commands" ) var ( diff --git a/commands/account/cf.go b/commands/account/cf.go index 65b8810..ad93fdf 100644 --- a/commands/account/cf.go +++ b/commands/account/cf.go @@ -4,8 +4,8 @@ import ( "errors" "strings" - "git.sr.ht/~sircmpwn/aerc/commands" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/commands" + "git.sr.ht/~rjarry/aerc/widgets" ) var ( diff --git a/commands/account/clear.go b/commands/account/clear.go index 838bfcc..3fecc13 100644 --- a/commands/account/clear.go +++ b/commands/account/clear.go @@ -2,7 +2,7 @@ package account import ( "errors" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/widgets" "time" ) diff --git a/commands/account/compose.go b/commands/account/compose.go index b33acf5..f48fa69 100644 --- a/commands/account/compose.go +++ b/commands/account/compose.go @@ -5,8 +5,8 @@ import ( "regexp" "strings" - "git.sr.ht/~sircmpwn/aerc/models" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/models" + "git.sr.ht/~rjarry/aerc/widgets" "git.sr.ht/~sircmpwn/getopt" ) diff --git a/commands/account/mkdir.go b/commands/account/mkdir.go index d3a6226..8a260c0 100644 --- a/commands/account/mkdir.go +++ b/commands/account/mkdir.go @@ -5,8 +5,8 @@ import ( "strings" "time" - "git.sr.ht/~sircmpwn/aerc/widgets" - "git.sr.ht/~sircmpwn/aerc/worker/types" + "git.sr.ht/~rjarry/aerc/widgets" + "git.sr.ht/~rjarry/aerc/worker/types" ) type MakeDir struct{} diff --git a/commands/account/next-folder.go b/commands/account/next-folder.go index 037cd31..e3541e5 100644 --- a/commands/account/next-folder.go +++ b/commands/account/next-folder.go @@ -5,7 +5,7 @@ import ( "fmt" "strconv" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/widgets" ) type NextPrevFolder struct{} diff --git a/commands/account/next-result.go b/commands/account/next-result.go index fe835ea..daa7af3 100644 --- a/commands/account/next-result.go +++ b/commands/account/next-result.go @@ -4,7 +4,7 @@ import ( "errors" "fmt" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/widgets" ) type NextPrevResult struct{} diff --git a/commands/account/next.go b/commands/account/next.go index 427f563..c9c2680 100644 --- a/commands/account/next.go +++ b/commands/account/next.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/widgets" ) type NextPrevMsg struct{} diff --git a/commands/account/rmdir.go b/commands/account/rmdir.go index 9cd974f..be49377 100644 --- a/commands/account/rmdir.go +++ b/commands/account/rmdir.go @@ -6,8 +6,8 @@ import ( "git.sr.ht/~sircmpwn/getopt" - "git.sr.ht/~sircmpwn/aerc/widgets" - "git.sr.ht/~sircmpwn/aerc/worker/types" + "git.sr.ht/~rjarry/aerc/widgets" + "git.sr.ht/~rjarry/aerc/worker/types" ) type RemoveDir struct{} diff --git a/commands/account/search.go b/commands/account/search.go index 607dc24..9a9244d 100644 --- a/commands/account/search.go +++ b/commands/account/search.go @@ -3,7 +3,7 @@ package account import ( "errors" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/widgets" ) type SearchFilter struct{} diff --git a/commands/account/select.go b/commands/account/select.go index b41b234..28aedfa 100644 --- a/commands/account/select.go +++ b/commands/account/select.go @@ -4,7 +4,7 @@ import ( "errors" "strconv" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/widgets" ) type SelectMessage struct{} diff --git a/commands/account/sort.go b/commands/account/sort.go index 6202578..89a5e38 100644 --- a/commands/account/sort.go +++ b/commands/account/sort.go @@ -4,8 +4,8 @@ import ( "errors" "strings" - "git.sr.ht/~sircmpwn/aerc/lib/sort" - "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~rjarry/aerc/lib/sort" + "git.sr.ht/~rjarry/aerc/widgets" ) type Sort struct{} diff --git a/commands/account/view.go b/commands/account/view.go index d52ce5b..4f59d94 100644 --- a/commands/account/view.go +++ b/commands/account/view.go @@ -3,8 +3,8 @@ package account import ( "errors" - "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 ViewMessage struct{} -- cgit v1.2.3