diff options
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | lib/gitlab_shell.rb | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,6 @@ +v1.7.2 + - More safe command execution + v1.7.1 - Fixed issue when developers are able to push to protected branches that contain a '/' in the branch name. @@ -1 +1 @@ -1.7.1 +1.7.2 diff --git a/lib/gitlab_shell.rb b/lib/gitlab_shell.rb index 67ffb26..c73bc29 100644 --- a/lib/gitlab_shell.rb +++ b/lib/gitlab_shell.rb @@ -53,7 +53,7 @@ class GitlabShell def process_cmd repo_full_path = File.join(repos_path, repo_name) $logger.info "gitlab-shell: executing git command <#{@git_cmd} #{repo_full_path}> for #{log_username}." - exec_cmd(@git_cmd,repo_full_path) + exec_cmd(@git_cmd, repo_full_path) end def validate_access |