A tool to sync music with your favorite devices
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cli: clarify filter flags and description

Gee Sawra d518b029 21fa3fbd

+3 -2
+1
src/cli.rs
··· 27 27 /// Cleans destination of uncleanly-copied files. 28 28 Clean(cmd::clean::Args), 29 29 30 + /// Filter tracks to copy over to a destination. 30 31 Filter(cmd::filter::Args), 31 32 }
+2 -2
src/cmd/filter.rs
··· 6 6 7 7 #[derive(ClapArgs)] 8 8 pub struct Args { 9 - /// Path where to store tracksync's database, as well as music files. 9 + /// Path where tracksync database is stored. 10 10 #[arg(long)] 11 11 pub destination: Option<String>, 12 12 ··· 16 16 17 17 /// Read filtering code from the specified file path, and store it in the database overwriting previously 18 18 /// stored filters. 19 - /// This option will not open $EDITOR. 19 + /// If this flag is provided, $EDITOR will not be open: omit this flag to edit your filters in-place. 20 20 #[arg(long)] 21 21 pub file: Option<String>, 22 22 }