git: fix space in command
This commit is contained in:
parent
210c96330a
commit
5dc5437eb9
1 changed files with 2 additions and 2 deletions
|
|
@ -39,8 +39,8 @@ class GitTunnelWrapper(object):
|
|||
|
||||
def command(self):
|
||||
root = self.server.get_root_store()
|
||||
git_server_config = ""
|
||||
command = f"cd {root}; {self.server.git_path} {git_server_config} {self.server.repo_mode} '{root}{self.server.repo_name}'"
|
||||
git_server_config = " "
|
||||
command = f"cd {root}; {self.server.git_path}{git_server_config}{self.server.repo_mode} '{root}{self.server.repo_name}'"
|
||||
log.debug("Final CMD: %s", command)
|
||||
return command
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue