rename directory param as downloads
This commit is contained in:
parent
9d578c2d86
commit
d109d73751
2 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ fn main() -> Result<()> {
|
||||||
site,
|
site,
|
||||||
podal::Env {
|
podal::Env {
|
||||||
network: NetworkEnv::default(),
|
network: NetworkEnv::default(),
|
||||||
file: FileEnv::create(args.directory),
|
file: FileEnv::create(args.downloads),
|
||||||
},
|
},
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
|
|
|
@ -6,5 +6,5 @@ pub struct Args {
|
||||||
/// This is also the directory where the subscription and history files are stored.
|
/// This is also the directory where the subscription and history files are stored.
|
||||||
/// Defaults to the current directory
|
/// Defaults to the current directory
|
||||||
#[arg(short, long, default_value = ".")]
|
#[arg(short, long, default_value = ".")]
|
||||||
pub directory: String,
|
pub downloads: String,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue