Skip to content

Commit 202670a

Browse files
committed
add a prefix to all GH components
1 parent a6d23da commit 202670a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tasks.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,16 @@ def build_ghuser_components(ctx, gh_io_folder=None, ironpython=None):
234234
if not ironpython:
235235
ironpython = 'ipy'
236236

237-
ctx.run('{} {} {} {} --ghio "{}"'.format(ironpython, os.path.join(action_dir, 'componentize.py'), source_dir, target_dir, os.path.abspath(gh_io_folder)))
237+
ctx.run(
238+
'{} {} {} {} --ghio "{}" --prefix "{}"'.format(
239+
ironpython,
240+
os.path.join(action_dir, 'componentize.py'),
241+
source_dir,
242+
target_dir,
243+
os.path.abspath(gh_io_folder),
244+
"(COMPAS-FAB) "
245+
)
246+
)
238247

239248

240249
@task(help={

0 commit comments

Comments
 (0)