Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 771ff53

Browse files
committed
Update manifest and args.py
1 parent 0fe678b commit 771ff53

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.DS_Store

-6 KB
Binary file not shown.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,4 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
.DS_Store

manifest.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"url": "https://github.com/flywheel-apps/test-gear",
99
"source": "https://github.com/flywheel-apps/pydeface-gear",
1010
"cite": "https://github.com/poldracklab/pydeface",
11-
"version": "0.0.1-dev-f",
11+
"version": "0.1.0",
1212
"custom": {
13-
"docker-image": "flywheel/pydeface-gear:0.0.1-dev-f",
13+
"docker-image": "flywheel/pydeface-gear:0.1.0",
1414
"gear-builder": {
1515
"category": "analysis",
16-
"image": "flywheel/pydeface-gear:0.0.1-dev-f"
16+
"image": "flywheel/pydeface-gear:0.1.0"
1717
}
1818
},
1919
"inputs": {
@@ -65,13 +65,13 @@
6565
},
6666
"nocleanup": {
6767
"type": "boolean",
68-
"description": "Do not cleanup temporary files. Off by default.",
69-
"default": "false"
68+
"description": "Do not cleanup temporary files. True by default.",
69+
"default": "true"
7070
},
7171
"verbose": {
7272
"type": "boolean",
73-
"description": "Show additional status prints. Off by default.",
74-
"default": "false"
73+
"description": "Show additional status prints. True by default.",
74+
"default": "true"
7575
}
7676
},
7777
"command": "/flywheel/v0/run.py",

utils/args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def execute(context, params, dry_run=False):
2727
# Build command-line parameters
2828
command = build_command_list(command, params)
2929

30-
# Extend with positional arguments
30+
# Extend with positional argument
3131
command.append(context.get_input_path('infile'))
3232

3333
exec_command(command, dry_run=dry_run)

0 commit comments

Comments
 (0)