There was an error while loading. Please reload this page.
1 parent dd6eed1 commit 55df77eCopy full SHA for 55df77e
CHANGELOG
@@ -1,5 +1,6 @@
1
v3.2.0
2
- Allow GitLab Shell to check for allowed access based on the used Git protocol
3
+ - Add an error message when using shell commands with incompatible GitLab versions
4
5
v3.1.0
6
- Refactor repository paths handling to allow multiple git mount points
lib/gitlab_shell.rb
@@ -182,6 +182,7 @@ def gcryptsetup?(args)
182
private
183
184
def repo_path=(repo_path)
185
+ raise ArgumentError, "Repository path not provided. Please make sure you're using GitLab v8.10 or later." unless repo_path
186
raise InvalidRepositoryPathError if File.absolute_path(repo_path) != repo_path
187
188
@repo_path = repo_path
0 commit comments