Skip to content

Commit

Permalink
fix eden clone --help
Browse files Browse the repository at this point in the history
Reviewed By: genevievehelsel

Differential Revision: D54345326

fbshipit-source-id: 2898073bd945ae4716c9c68a9b106baee0fb5c2a
  • Loading branch information
MichaelCuevas authored and facebook-github-bot committed Feb 29, 2024
1 parent 3490a27 commit e686673
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions eden/fs/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,15 @@ def setup_parser(self, parser: argparse.ArgumentParser) -> None:
help="Enable symlink support for the cloned mount",
)

parser.add_argument(
"--filter-path",
help=(
"The FilteredFS filter to activate when "
"--backing-store=filteredhg. When this option is omitted, no "
"filter is applied to the repo but FilteredFS is still used."
),
)

case_group = parser.add_mutually_exclusive_group()
case_group.add_argument(
"--case-sensitive",
Expand All @@ -789,15 +798,6 @@ def setup_parser(self, parser: argparse.ArgumentParser) -> None:
help=argparse.SUPPRESS,
)

parser.add_argument(
"--filter-path",
help=(
"The FilteredFS filter to activate when "
"--backing-store=filteredhg. When this option is omitted, no "
"filter is applied to the repo but FilteredFS is still used."
),
)

def run(self, args: argparse.Namespace) -> int:
instance = get_eden_instance(args)

Expand Down

0 comments on commit e686673

Please sign in to comment.