Skip to content

Commit 7a718ab

Browse files
fix(core): githooks are initialized in wrong directory (#3230)
1 parent d901f27 commit 7a718ab

File tree

9 files changed

+434
-407
lines changed

9 files changed

+434
-407
lines changed

renku/command/githooks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
"""Install and uninstall Git hooks."""
1919

2020
from renku.command.command_builder.command import Command
21-
from renku.core.githooks import install, uninstall
21+
from renku.core.githooks import install_githooks, uninstall_githooks
2222

2323

2424
def install_githooks_command():
2525
"""Command to install Git hooks."""
26-
return Command().command(install)
26+
return Command().command(install_githooks)
2727

2828

2929
def uninstall_githooks_command():
3030
"""Command to uninstall Git hooks."""
31-
return Command().command(uninstall)
31+
return Command().command(uninstall_githooks)

0 commit comments

Comments
 (0)