Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions empack/cli/pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
name="env",
help="""Pack an environment into a multiple tarballs:
This will pack and exisiting enviroment into multiple tarballs
and a json file with a list of package filenmmes.
and a json file with a list of package filenames.
""",
)
def pack_env_cli(
Expand All @@ -37,7 +37,7 @@ def pack_env_cli(
"/",
"--relocate-prefix",
"-r",
help="path of the env in the the virtual filesystem",
help="path of the env in the virtual filesystem",
),
config: list[Path] = typer.Option( # noqa: B008
[DEFAULT_CONFIG_PATH],
Expand Down Expand Up @@ -91,7 +91,7 @@ def pack_dir_cli(
...,
"--mount-dir",
"-m",
help="path of the directory in the the virtual filesystem",
help="path of the directory in the virtual filesystem",
),
outname: Path = typer.Option( # noqa: B008
...,
Expand Down Expand Up @@ -127,7 +127,7 @@ def pack_file_cli(
...,
"--mount-dir",
"-m",
help="path of the directory in the the virtual filesystem",
help="path of the directory in the virtual filesystem",
),
outname: Path = typer.Option( # noqa: B008
...,
Expand Down
Loading