2021.4.6 #25

Merged
edraft merged 57 commits from 2021.4.6 into 2021.4.post1 2021-04-11 15:54:38 +02:00
Showing only changes of commit d4919e027c - Show all commits

View File

@ -201,7 +201,6 @@ class PublisherService(PublisherABC):
if len(module_py_lines) > 0: if len(module_py_lines) > 0:
imports = '\n'.join(module_py_lines) imports = '\n'.join(module_py_lines)
Console.write_line(self._project_settings.version.to_str())
template_content = stringTemplate(InitTemplate.get_init_py()).substitute( template_content = stringTemplate(InitTemplate.get_init_py()).substitute(
Name=self._project_settings.name, Name=self._project_settings.name,
Description=self._project_settings.description, Description=self._project_settings.description,
@ -406,7 +405,7 @@ class PublisherService(PublisherABC):
4. Remove all included source from dist_path/publish 4. Remove all included source from dist_path/publish
:return: :return:
""" """
self._output_path = os.path.join(self._output_path, 'publish') self._output_path = os.path.abspath(os.path.join(self._output_path, self._project_settings.name, 'publish'))
Console.write_line('Build:') Console.write_line('Build:')
Console.spinner( Console.spinner(