Skip to content

Commit a6ce2e3

Browse files
author
earthmant
committed
fix that mf
1 parent aab4d52 commit a6ce2e3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ecosystem_cicd_tools/packaging.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ def get_workspace_files():
3535

3636
def package_blueprint(name, source_directory):
3737
archive_temp = NamedTemporaryFile(delete=False)
38+
if '/' in name:
39+
name = name.replace('/', '-')
40+
name = name.strip('-')
3841
destination = path.join(
3942
path.dirname(archive_temp.name), '{0}.zip'.format(name))
4043
create_archive(source_directory, archive_temp.name)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='cloudify-ecosystem-test',
6-
version='2.2.4',
6+
version='2.2.5',
77
license='LICENSE',
88
packages=[
99
'ecosystem_tests',

0 commit comments

Comments
 (0)