Update module paths to Forgejo
All checks were successful
/ check (push) Successful in 4s

This commit is contained in:
Oliver Davies 2025-08-01 09:36:37 +01:00
parent 959f92dea2
commit d98e648dca
5 changed files with 8 additions and 8 deletions

2
go.mod
View file

@ -1,4 +1,4 @@
module git-repo-updater module code.oliverdavies.uk/opdavies/git-repo-updater
go 1.24.5 go 1.24.5

View file

@ -6,8 +6,8 @@ import (
"os/exec" "os/exec"
"strings" "strings"
"git-repo-updater/internal/config" "code.oliverdavies.uk/opdavies/git-repo-updater/internal/config"
"git-repo-updater/internal/utils" "code.oliverdavies.uk/opdavies/git-repo-updater/internal/utils"
) )
func FindInDirectory(dir string) (string, error) { func FindInDirectory(dir string) (string, error) {

View file

@ -7,8 +7,8 @@ import (
"slices" "slices"
"strings" "strings"
"git-repo-updater/internal/config" "code.oliverdavies.uk/opdavies/git-repo-updater/internal/config"
"git-repo-updater/internal/utils" "code.oliverdavies.uk/opdavies/git-repo-updater/internal/utils"
) )
func Update(repositoryPath string) error { func Update(repositoryPath string) error {

View file

@ -5,7 +5,7 @@ import (
"path/filepath" "path/filepath"
"testing" "testing"
"git-repo-updater/internal/utils" "code.oliverdavies.uk/opdavies/git-repo-updater/internal/utils"
) )
func TestExpandPath(t *testing.T) { func TestExpandPath(t *testing.T) {

View file

@ -4,8 +4,8 @@ import (
"log" "log"
"strings" "strings"
"git-repo-updater/internal/config" "code.oliverdavies.uk/opdavies/git-repo-updater/internal/config"
"git-repo-updater/internal/repositories" "code.oliverdavies.uk/opdavies/git-repo-updater/internal/repositories"
) )
func main() { func main() {