Skip to content

Commit

Permalink
Remove default from arguments as flag will show the default one
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiofalci committed Jun 13, 2016
1 parent 515fe31 commit 18d97af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sconsify.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func main() {
providedWebApi := flag.Bool("web-api", false, "Use Spotify WEB API for more features. It requires web authorization.")
providedUi := flag.Bool("ui", true, "Run Sconsify with Console User Interface. If false then no User Interface will be presented and it'll shuffle tracks.")
providedPlaylists := flag.String("playlists", "", "Select just some Playlists to play. Comma separated list.")
providedPreferredBitrate := flag.String("preferred-bitrate", "320k", "Preferred bitrate: 96k, 160k, 320k (default).")
providedPreferredBitrate := flag.String("preferred-bitrate", "320k", "Preferred bitrate: 96k, 160k, 320k.")
providedNoUiSilent := flag.Bool("noui-silent", false, "Silent mode when no UI is used.")
providedNoUiRepeatOn := flag.Bool("noui-repeat-on", true, "Play your playlist and repeat it after the last track.")
providedNoUiShuffle := flag.Bool("noui-shuffle", true, "Shuffle tracks or follow playlist order.")
Expand Down

0 comments on commit 18d97af

Please sign in to comment.