diff options
| author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-02-04 10:02:39 +0200 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-02-04 10:02:39 +0200 |
| commit | 4908b89495e27b6ea829f32143c7753a6139df32 (patch) | |
| tree | 8bc11743d8100772ab6163c58db08fb5a516c66e /bin/gitlab-projects | |
| parent | fcf70b91639cc4ee369631cf8fa4ebad4fbf04c8 (diff) | |
| download | gitlab-shell-4908b89495e27b6ea829f32143c7753a6139df32.tar.gz | |
Project builder
Diffstat (limited to 'bin/gitlab-projects')
| -rwxr-xr-x | bin/gitlab-projects | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/gitlab-projects b/bin/gitlab-projects new file mode 100755 index 0000000..223c69f --- /dev/null +++ b/bin/gitlab-projects @@ -0,0 +1,14 @@ +#!/usr/bin/env ruby + +# +# GitLab Projects shell. Add/remove projects from /home/git/repositories +# +# Ex. +# /bin/gitlab-projects add-project gitlab/gitlab-ci.git +# +# +ROOT_PATH = File.join(File.expand_path(File.dirname(__FILE__)), "..") +require File.join(ROOT_PATH, 'lib', 'gitlab_projects') +GitlabProjects.new.exec + +exit |
