Skip to content

Commit 96e533c

Browse files
authored
Merge pull request #2034 from sarahmarshy/patch-1
[Exporters] Conflicting zip name
2 parents 5994173 + beb0be9 commit 96e533c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/export/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def online_build_url_resolver(url):
5858

5959

6060
def export(project_path, project_name, ide, target, destination='/tmp/',
61-
tempdir=None, clean=True, extra_symbols=None, zip=True, sources_relative=False, build_url_resolver=online_build_url_resolver):
61+
tempdir=None, clean=True, extra_symbols=None, make_zip=True, sources_relative=False, build_url_resolver=online_build_url_resolver):
6262
# Convention: we are using capitals for toolchain and target names
6363
if target is not None:
6464
target = target.upper()
@@ -136,7 +136,7 @@ def export(project_path, project_name, ide, target, destination='/tmp/',
136136
# copy .hgignore file to exported direcotry as well.
137137
if exists(os.path.join(exporter.TEMPLATE_DIR,'.hgignore')):
138138
copy(os.path.join(exporter.TEMPLATE_DIR,'.hgignore'), tempdir)
139-
if zip:
139+
if make_zip:
140140
zip_path = zip_working_directory_and_clean_up(tempdir, destination, project_name, clean)
141141
else:
142142
zip_path = destination

0 commit comments

Comments
 (0)