style 'tzk' as lowercase
This commit is contained in:
parent
5eff73f04e
commit
465c1c0665
@ -66,7 +66,7 @@ class CommitCommand(CliCommand):
|
|||||||
current_branch = git.read("rev-parse", "--abbrev-ref", "HEAD")
|
current_branch = git.read("rev-parse", "--abbrev-ref", "HEAD")
|
||||||
if current_branch != cm().commit_require_branch:
|
if current_branch != cm().commit_require_branch:
|
||||||
fail(f"You are on the '{current_branch}' branch, "
|
fail(f"You are on the '{current_branch}' branch, "
|
||||||
f"but your TZK configuration requires you to be on the "
|
f"but your tzk configuration requires you to be on the "
|
||||||
f"'{cm().commit_require_branch}' branch to commit.")
|
f"'{cm().commit_require_branch}' branch to commit.")
|
||||||
|
|
||||||
git.exec("add", "-A")
|
git.exec("add", "-A")
|
||||||
@ -119,7 +119,7 @@ class ListenCommand(CliCommand):
|
|||||||
|
|
||||||
class InitCommand(CliCommand):
|
class InitCommand(CliCommand):
|
||||||
cmd = "init"
|
cmd = "init"
|
||||||
help = "Set up a new TZK directory."
|
help = "Set up a new tzk directory."
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def setup_arguments(cls, parser: argparse.ArgumentParser) -> None:
|
def setup_arguments(cls, parser: argparse.ArgumentParser) -> None:
|
||||||
@ -147,7 +147,7 @@ class InitCommand(CliCommand):
|
|||||||
|
|
||||||
if os.path.exists("package.json"):
|
if os.path.exists("package.json"):
|
||||||
fail("A 'package.json' file already exists in the current directory. "
|
fail("A 'package.json' file already exists in the current directory. "
|
||||||
"Perhaps you've already initialized a TZK repository here?")
|
"Perhaps you've already initialized a tzk repository here?")
|
||||||
|
|
||||||
def execute(self, args: argparse.Namespace) -> None:
|
def execute(self, args: argparse.Namespace) -> None:
|
||||||
self._precheck()
|
self._precheck()
|
||||||
@ -172,7 +172,7 @@ class BuildCommand(CliCommand):
|
|||||||
cmd = "build"
|
cmd = "build"
|
||||||
help = ("Build another wiki or derivative product, "
|
help = ("Build another wiki or derivative product, "
|
||||||
"such as a public version of the wiki, "
|
"such as a public version of the wiki, "
|
||||||
"from this TZK repository.")
|
"from this tzk repository.")
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def setup_arguments(cls, parser: argparse.ArgumentParser) -> None:
|
def setup_arguments(cls, parser: argparse.ArgumentParser) -> None:
|
||||||
|
@ -34,7 +34,7 @@ def tzk_builder(func):
|
|||||||
initially passed wrapped up in it. Calling that lambda has the effect
|
initially passed wrapped up in it. Calling that lambda has the effect
|
||||||
of executing the builder.
|
of executing the builder.
|
||||||
|
|
||||||
We use this in TZK to allow the user to use function calls in her config
|
We use this in tzk to allow the user to use function calls in her config
|
||||||
to define the build steps, while not requiring her to write a bunch of
|
to define the build steps, while not requiring her to write a bunch of
|
||||||
ugly and confusing lambda:'s in the config. The functions that will be called
|
ugly and confusing lambda:'s in the config. The functions that will be called
|
||||||
are prepared during the config and executed later.
|
are prepared during the config and executed later.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
"""
|
"""
|
||||||
config.py - read and manage the TZK config file
|
config.py - read and manage the tzk config file
|
||||||
"""
|
"""
|
||||||
import datetime
|
import datetime
|
||||||
import functools
|
import functools
|
||||||
|
Loading…
Reference in New Issue
Block a user