diff options
author | Sebastian Kuzminsky <seb@highlab.com> | 2014-04-02 00:48:30 -0600 |
---|---|---|
committer | Sebastian Kuzminsky <seb@highlab.com> | 2014-04-02 00:48:30 -0600 |
commit | 63f571ff71ba92672f17aef1b73949e0641927cb (patch) | |
tree | 8d429d34d753c410f874f8254a32c07fc04cac1a | |
parent | 1848b4c60c2ba3c544baee590c4ded329440180b (diff) | |
download | linuxcnc-63f571ff71ba92672f17aef1b73949e0641927cb.tar.gz linuxcnc-63f571ff71ba92672f17aef1b73949e0641927cb.zip |
teach githelper about the 2.6 branch
-rw-r--r-- | scripts/githelper.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/githelper.sh b/scripts/githelper.sh index 2c1f2b993..42354e6f2 100644 --- a/scripts/githelper.sh +++ b/scripts/githelper.sh @@ -30,6 +30,10 @@ function githelper() { GIT_TAG_GLOB="v2.6*" DEB_COMPONENT="master" ;; + 2.6) + GIT_TAG_GLOB="v2.6*" + DEB_COMPONENT="2.6" + ;; v2.5_branch) GIT_TAG_GLOB="v2.5*" DEB_COMPONENT="v2.5_branch" |