summaryrefslogtreecommitdiff
path: root/lib/gitlab_shell.rb
diff options
context:
space:
mode:
authorAlejandro Rodríguez <alejorro70@gmail.com>2016-07-06 12:57:03 -0400
committerAlejandro Rodríguez <alejorro70@gmail.com>2016-07-06 12:57:03 -0400
commit55df77e7b45a7cd2b37c42ce879d8c47f663822c (patch)
treecedebfdfe39f22b80991642d4b314ca3ad8eae2a /lib/gitlab_shell.rb
parentdd6eed168d75030a028da4f1ba5b5f1483de395a (diff)
downloadgitlab-shell-55df77e7b45a7cd2b37c42ce879d8c47f663822c.tar.gz
Add an error message when using shell commands with incompatible GitLab versions
Diffstat (limited to 'lib/gitlab_shell.rb')
-rw-r--r--lib/gitlab_shell.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gitlab_shell.rb b/lib/gitlab_shell.rb
index d9812ce..b6c358e 100644
--- a/lib/gitlab_shell.rb
+++ b/lib/gitlab_shell.rb
@@ -182,6 +182,7 @@ class GitlabShell
private
def repo_path=(repo_path)
+ raise ArgumentError, "Repository path not provided. Please make sure you're using GitLab v8.10 or later." unless repo_path
raise InvalidRepositoryPathError if File.absolute_path(repo_path) != repo_path
@repo_path = repo_path