cli args improvements

This commit is contained in:
2026-01-06 20:31:25 +01:00
parent 72f7b44f98
commit 8d308178eb
2 changed files with 8 additions and 16 deletions

View File

@@ -61,7 +61,7 @@ func Rename(files []string, config Config) {
}
}
func DownloadGameArt(files []string, config Config) {
func DownloadGameArt(files []string, output string, config Config) {
for _, file := range files {
fmt.Printf("Scanning file: %s\n", file)
@@ -73,6 +73,6 @@ func DownloadGameArt(files []string, config Config) {
fmt.Printf("Found game ID: %s\n", gameID)
downloadArtForGame(gameID, "./ignore")
downloadArtForGame(gameID, output)
}
}