mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 10:17:27 +02:00
Add MESHROOM_SUBMIT_LABEL to customize the label of a node when submitted on renderfarm
This commit is contained in:
parent
e832286d0f
commit
9d414eda2f
2 changed files with 4 additions and 4 deletions
|
@ -64,8 +64,8 @@ parser.add_argument('--submit', help='Submit on renderfarm instead of local comp
|
||||||
action='store_true')
|
action='store_true')
|
||||||
parser.add_argument("--submitLabel",
|
parser.add_argument("--submitLabel",
|
||||||
type=str,
|
type=str,
|
||||||
default='[Meshroom] {projectName}',
|
default=os.environ.get('MESHROOM_SUBMIT_LABEL', '[Meshroom] {projectName}'),
|
||||||
help="Label of a node in the submitter")
|
help="Label of a node when submitted on renderfarm.")
|
||||||
parser.add_argument('--submitter',
|
parser.add_argument('--submitter',
|
||||||
type=str,
|
type=str,
|
||||||
default='SimpleFarm',
|
default='SimpleFarm',
|
||||||
|
|
|
@ -121,8 +121,8 @@ Additional Resources:
|
||||||
'--submitLabel',
|
'--submitLabel',
|
||||||
metavar='SUBMITLABEL',
|
metavar='SUBMITLABEL',
|
||||||
type=str,
|
type=str,
|
||||||
help='Label of a node in the submitter.',
|
help='Label of a node when submitted on renderfarm.',
|
||||||
default='[Meshroom] {projectName}'
|
default=os.environ.get('MESHROOM_SUBMIT_LABEL', '[Meshroom] {projectName}'),
|
||||||
)
|
)
|
||||||
|
|
||||||
# Project and Input Options
|
# Project and Input Options
|
||||||
|
|
Loading…
Add table
Reference in a new issue