Skip to content

Commit

Permalink
Update dx.py
Browse files Browse the repository at this point in the history
  • Loading branch information
austinlocke committed Dec 9, 2024
1 parent 043aa11 commit 74eabf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/dxpy/scripts/dx.py
Original file line number Diff line number Diff line change
Expand Up @@ -4805,7 +4805,7 @@ def positive_number(value):
nargs='+')
cp_sources_action.completer = DXPathCompleter()
parser_cp.add_argument('destination', help=fill('Folder into which to copy the sources or new pathname (if only one source is provided). Must be in a different project/container than all source paths.', width_adjustment=-15))
parser_cp.add_argument('--target-file-relocation', choices=["true", "false"], help='Allow symlink target file relocation in external storage while cloning a symlink.', default="false")
parser_cp.add_argument('--target-file-relocation', help='Allow symlink target file relocation in external storage while cloning a symlink.', action='store_true')
parser_cp.set_defaults(func=cp)
register_parser(parser_cp, categories='fs')

Expand All @@ -4821,7 +4821,7 @@ def positive_number(value):
nargs='+')
mv_sources_action.completer = DXPathCompleter()
parser_mv.add_argument('destination', help=fill('Folder into which to move the sources or new pathname (if only one source is provided). Must be in the same project/container as all source paths.', width_adjustment=-15))
parser_mv.add_argument('--target-file-relocation', choices=["true", "false"], help='Allow symlink target file relocation in external storage while moving a symlink.', default="false")
parser_mv.add_argument('--target-file-relocation', help='Allow symlink target file relocation in external storage while moving a symlink.', action='store_true')
parser_mv.set_defaults(func=mv)
register_parser(parser_mv, categories='fs')

Expand Down

0 comments on commit 74eabf4

Please sign in to comment.