diff options
author | Artem V. Navrotskiy <bozaro@users.noreply.github.com> | 2015-09-01 22:20:55 +0300 |
---|---|---|
committer | Artem V. Navrotskiy <navrotskiy@corp.mail.ru> | 2015-09-09 12:22:24 +0300 |
commit | 8449979ff029af51be0c675c5b6262bc4adc8b3d (patch) | |
tree | 35afefe00ae626dccd92b8275d01c3d981c284c8 /lib | |
parent | c31e6165016e4f12483b4c328a62493adac1bcac (diff) | |
download | gitlab-shell-8449979ff029af51be0c675c5b6262bc4adc8b3d.tar.gz |
Run git-lfs-authenticate script with original command line arguments
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab_shell.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/gitlab_shell.rb b/lib/gitlab_shell.rb index 57c319c..0055f14 100644 --- a/lib/gitlab_shell.rb +++ b/lib/gitlab_shell.rb @@ -111,6 +111,8 @@ class GitlabShell $logger.info "gitlab-shell: executing git-annex command <#{parsed_args.join(' ')}> for #{log_username}." exec_cmd(*parsed_args) + elsif @git_cmd == 'git-lfs-authenticate' + exec_cmd(@origin_cmd) else $logger.info "gitlab-shell: executing git command <#{@git_cmd} #{repo_full_path}> for #{log_username}." exec_cmd(@git_cmd, repo_full_path) |