Skip to content

Commit

Permalink
Add deprecated test for bundle_dir option
Browse files Browse the repository at this point in the history
  • Loading branch information
bglw committed Aug 31, 2023
1 parent c3db85f commit cabc124
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pagefind/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ pub struct PagefindInboundConfig {
#[serde(default)] // This is actually required, but we validate that later
pub site: String,

#[clap(long, short, help = "DEPRECATED: Use . . .")]
#[clap(
long,
short,
help = "DEPRECATED: Use `output_subdir` or `output_path` instead"
)]
#[clap(required = false, hide = true)]
pub bundle_dir: Option<String>,

Expand Down

0 comments on commit cabc124

Please sign in to comment.