diff --git a/README.md b/README.md index 614ae40..c31a36f 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ games-screenshot-manager -provider steam -output-path ./Output games-screenshot-manager -provider steam -output-path ./Output -download-covers # Perform a dry run (see what's gonna get copied where) -games-screenshot-mananger -provider steam -dry-run +games-screenshot-manager -provider steam -dry-run # Parse all Nintendo Switch screenshots games-screenshot-manager -provider nintendo-switch -input-path ./Album diff --git a/go.mod b/go.mod index 03ab61e..a320ab2 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/fmartingr/games-screenshot-mananger +module github.com/fmartingr/games-screenshot-manager go 1.15 diff --git a/main.go b/main.go index 12c112b..77a620e 100644 --- a/main.go +++ b/main.go @@ -1,10 +1,9 @@ package main import ( - "github.com/fmartingr/games-screenshot-mananger/pkg/cli" + "github.com/fmartingr/games-screenshot-manager/pkg/cli" ) - func main() { cli.Start() } diff --git a/pkg/cli/cli.go b/pkg/cli/cli.go index c19a310..24616f5 100644 --- a/pkg/cli/cli.go +++ b/pkg/cli/cli.go @@ -8,13 +8,13 @@ import ( "path/filepath" "strings" - "github.com/fmartingr/games-screenshot-mananger/pkg/games" - "github.com/fmartingr/games-screenshot-mananger/pkg/helpers" - "github.com/fmartingr/games-screenshot-mananger/pkg/providers/minecraft" - "github.com/fmartingr/games-screenshot-mananger/pkg/providers/nintendo_switch" - "github.com/fmartingr/games-screenshot-mananger/pkg/providers/playstation4" - "github.com/fmartingr/games-screenshot-mananger/pkg/providers/retroarch" - "github.com/fmartingr/games-screenshot-mananger/pkg/providers/steam" + "github.com/fmartingr/games-screenshot-manager/pkg/games" + "github.com/fmartingr/games-screenshot-manager/pkg/helpers" + "github.com/fmartingr/games-screenshot-manager/pkg/providers/minecraft" + "github.com/fmartingr/games-screenshot-manager/pkg/providers/nintendo_switch" + "github.com/fmartingr/games-screenshot-manager/pkg/providers/playstation4" + "github.com/fmartingr/games-screenshot-manager/pkg/providers/retroarch" + "github.com/fmartingr/games-screenshot-manager/pkg/providers/steam" "github.com/gosimple/slug" ) diff --git a/pkg/helpers_test/files_test.go b/pkg/helpers_test/files_test.go index c9e49d8..1e865d1 100644 --- a/pkg/helpers_test/files_test.go +++ b/pkg/helpers_test/files_test.go @@ -6,7 +6,7 @@ import ( "os" "testing" - "github.com/fmartingr/games-screenshot-mananger/pkg/helpers" + "github.com/fmartingr/games-screenshot-manager/pkg/helpers" ) const testfileContents = "testfile" diff --git a/pkg/providers/minecraft/minecraft.go b/pkg/providers/minecraft/minecraft.go index b736382..bb8966a 100644 --- a/pkg/providers/minecraft/minecraft.go +++ b/pkg/providers/minecraft/minecraft.go @@ -8,8 +8,8 @@ import ( "runtime" "strings" - "github.com/fmartingr/games-screenshot-mananger/pkg/games" - "github.com/fmartingr/games-screenshot-mananger/pkg/helpers" + "github.com/fmartingr/games-screenshot-manager/pkg/games" + "github.com/fmartingr/games-screenshot-manager/pkg/helpers" ) func getScreenshotsFromPath(game *games.Game, path string) { diff --git a/pkg/providers/nintendo_switch/switch.go b/pkg/providers/nintendo_switch/switch.go index 6f0e163..42c8f7e 100644 --- a/pkg/providers/nintendo_switch/switch.go +++ b/pkg/providers/nintendo_switch/switch.go @@ -9,8 +9,8 @@ import ( "strings" "time" - "github.com/fmartingr/games-screenshot-mananger/pkg/games" - "github.com/fmartingr/games-screenshot-mananger/pkg/helpers" + "github.com/fmartingr/games-screenshot-manager/pkg/games" + "github.com/fmartingr/games-screenshot-manager/pkg/helpers" ) const providerName = "nintendo-switch" diff --git a/pkg/providers/playstation4/playstation4.go b/pkg/providers/playstation4/playstation4.go index cca9751..f9cadd3 100644 --- a/pkg/providers/playstation4/playstation4.go +++ b/pkg/providers/playstation4/playstation4.go @@ -8,7 +8,7 @@ import ( "github.com/rwcarlsen/goexif/exif" - "github.com/fmartingr/games-screenshot-mananger/pkg/games" + "github.com/fmartingr/games-screenshot-manager/pkg/games" ) const providerName = "playstation-4" diff --git a/pkg/providers/retroarch/retroarch.go b/pkg/providers/retroarch/retroarch.go index 09c4823..8ca97a5 100644 --- a/pkg/providers/retroarch/retroarch.go +++ b/pkg/providers/retroarch/retroarch.go @@ -23,8 +23,8 @@ import ( "strings" "time" - "github.com/fmartingr/games-screenshot-mananger/pkg/games" - "github.com/fmartingr/games-screenshot-mananger/pkg/helpers" + "github.com/fmartingr/games-screenshot-manager/pkg/games" + "github.com/fmartingr/games-screenshot-manager/pkg/helpers" ) const providerName = "retroarch" diff --git a/pkg/providers/steam/steam.go b/pkg/providers/steam/steam.go index 04cd8f9..a95c73d 100644 --- a/pkg/providers/steam/steam.go +++ b/pkg/providers/steam/steam.go @@ -11,8 +11,8 @@ import ( "strconv" "strings" - "github.com/fmartingr/games-screenshot-mananger/pkg/games" - "github.com/fmartingr/games-screenshot-mananger/pkg/helpers" + "github.com/fmartingr/games-screenshot-manager/pkg/games" + "github.com/fmartingr/games-screenshot-manager/pkg/helpers" ) const providerName string = "steam"