Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cli/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ pub mod delete;
pub mod diff;
pub(super) mod experimental;
pub mod extract;
mod fflag;
pub mod list;
mod migrate;
pub mod sort;
Expand Down
3 changes: 3 additions & 0 deletions cli/src/command/experimental.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ impl Command for ExperimentalCommand {
ExperimentalCommands::Chown(cmd) => cmd.execute(ctx),
ExperimentalCommands::Chmod(cmd) => cmd.execute(ctx),
ExperimentalCommands::Acl(cmd) => cmd.execute(ctx),
ExperimentalCommands::Fflag(cmd) => cmd.execute(ctx),
Comment thread
coderabbitai[bot] marked this conversation as resolved.
ExperimentalCommands::Migrate(cmd) => cmd.execute(ctx),
ExperimentalCommands::Chunk(cmd) => cmd.execute(ctx),
ExperimentalCommands::Sort(cmd) => {
Expand Down Expand Up @@ -75,6 +76,8 @@ pub(crate) enum ExperimentalCommands {
Chmod(command::chmod::ChmodCommand),
#[command(about = "Manipulate ACLs of entries")]
Acl(command::acl::AclCommand),
#[command(about = "Manipulate file flags of entries")]
Fflag(command::fflag::FflagCommand),
#[command(about = "Migrate old format to latest format")]
Migrate(command::migrate::MigrateCommand),
#[command(about = "Chunk level operation")]
Expand Down
Loading
Loading