X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b97ac7f96234cbbb491bdbaade840ab50802f357..b4fd2ab4e409e36f894c1fb27144e4fa2854f389:/services/fuse/bin/arv-mount diff --git a/services/fuse/bin/arv-mount b/services/fuse/bin/arv-mount index c0472054a5..68cd09c1e8 100755 --- a/services/fuse/bin/arv-mount +++ b/services/fuse/bin/arv-mount @@ -47,7 +47,6 @@ with "--". parser.add_argument('--exec', type=str, nargs=argparse.REMAINDER, dest="exec_args", metavar=('command', 'args', '...', '--'), help="""Mount, run a command, then unmount and exit""") - parser.add_argument('--set-executable-bit', action='store_true', help="""Set executable bit on collection files""") args = parser.parse_args() args.mountpoint = os.path.realpath(args.mountpoint) @@ -81,7 +80,7 @@ with "--". try: # Create the request handler - operations = Operations(os.getuid(), os.getgid(), args.encoding, args.set_executable_bit) + operations = Operations(os.getuid(), os.getgid(), args.encoding) api = SafeApi(arvados.config) usr = api.users().current().execute(num_retries=args.retries)