Skip to content
Snippets Groups Projects
Commit 8b01a1f4 authored by Ronald Jäpel's avatar Ronald Jäpel
Browse files

Fix CLI

parent cec548aa
No related branches found
No related tags found
No related merge requests found
...@@ -77,15 +77,12 @@ def run_command(command, results_commit_message): ...@@ -77,15 +77,12 @@ def run_command(command, results_commit_message):
help='List of files to be added to the gitignore file. Optional.') help='List of files to be added to the gitignore file. Optional.')
@click.option('--gitattributes', default=None, @click.option('--gitattributes', default=None,
help='List of files to be added to the gitattributes file. Optional.') help='List of files to be added to the gitattributes file. Optional.')
@click.option('--lfs_filetypes', default=None,
help='List of filetypes to be handled by git lfs. Optional.')
@click.argument('path_to_repo') @click.argument('path_to_repo')
def initialize_repo(path_to_repo: str, output_repo_name: (str | bool) = "output", gitignore: list = None, def initialize_repo(path_to_repo: str, output_repo_name: (str | bool) = "output", gitignore: list = None,
gitattributes: list = None, lfs_filetypes: list = None, gitattributes: list = None,
output_repo_kwargs: dict = None): output_repo_kwargs: dict = None):
initialize_git_repo_implementation(path_to_repo, output_repo_name, gitignore, initialize_git_repo_implementation(path_to_repo, output_repo_name, gitignore,
gitattributes, lfs_filetypes, gitattributes, output_repo_kwargs)
output_repo_kwargs)
@cli.command() @cli.command()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment