Skip to content

Commit bbd003f

Browse files
authored
Merge pull request #3813 from zemu-unile/submit_job_ignore_easystack
add --easystack to ignore_opts for submit_job()
2 parents f64a54a + 04204a1 commit bbd003f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/tools/parallelbuild.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def submit_jobs(ordered_ecs, cmd_line_opts, testing=False, prepare_first=True):
127127
curdir = os.getcwd()
128128

129129
# regex pattern for options to ignore (help options can't reach here)
130-
ignore_opts = re.compile('^--robot$|^--job|^--try-.*$')
130+
ignore_opts = re.compile('^--robot$|^--job|^--try-.*$|^--easystack$')
131131

132132
# generate_cmd_line returns the options in form --longopt=value
133133
opts = [o for o in cmd_line_opts if not ignore_opts.match(o.split('=')[0])]

0 commit comments

Comments
 (0)