You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flag.StringVarP(&configPath, "config", "c", ".env", "Path of the configuration file")
22
23
flag.StringVarP(&playlist, "playlist", "p", "weekly-exploration", "Playlist where to get tracks. Supported: weekly-exploration, weekly-jams, daily-jams")
23
24
flag.StringVarP(&downloadMode, "download-mode", "d", "normal", "Download mode: 'normal' (download only when track is not found locally), 'skip' (skip downloading, only use tracks already found locally), 'force' (always download, don't check for local tracks)")
24
-
flag.BoolVarP(&ExcludeLocal, "exclude-local", "e", false, "Exclude locally found tracks from the imported playlist")
25
+
flag.BoolVarP(&excludeLocal, "exclude-local", "e", false, "Exclude locally found tracks from the imported playlist")
26
+
flag.BoolVar(&persist, "persist", true, "Keep playlists between generations")
0 commit comments