This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* valac -o bandcamp-downloader --pkg libsoup-2.4 --pkg json-glib-1.0 --pkg posix main.vala | |
* ./bandcamp-downloader --band=bash38 --album=summer-time -o ~/Music/bash-summer-time | |
**/ | |
private static string band_name = null; | |
private static string album_name = null; | |
private static string save_path = null; | |
private const GLib.OptionEntry[] options = { |