Skip to content

Commit 04204a1

Browse files
committed
add --easystack to ignore_opts for submit_job()
1 parent af02665 commit 04204a1

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)