2021.4 #19

Merged
edraft merged 237 commits from 2021.4 into master 2021-04-01 10:13:33 +02:00
3 changed files with 6 additions and 0 deletions
Showing only changes of commit 0e6b0a657b - Show all commits

View File

@ -1,3 +1,4 @@
from cpl.console import Console
from cpl_cli.command_abc import CommandABC
from cpl_cli.publish.publisher_abc import PublisherABC
@ -11,3 +12,4 @@ class Build(CommandABC):
def run(self, args: list[str]):
self._publisher.build()
Console.write('\n')

View File

@ -168,3 +168,5 @@ class New(CommandABC):
self._command = args[0]
if self._command == 'console':
self._console(args)
Console.write('\n')

View File

@ -1,3 +1,4 @@
from cpl.console import Console
from cpl_cli.command_abc import CommandABC
from cpl_cli.publish.publisher_abc import PublisherABC
@ -11,3 +12,4 @@ class Publish(CommandABC):
def run(self, args: list[str]):
self._publisher.publish()
Console.write('\n')