summaryrefslogtreecommitdiff
path: root/lisp/git/git.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/git/git.lisp')
-rw-r--r--lisp/git/git.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/git/git.lisp b/lisp/git/git.lisp
index 403c25e..1aa8eb0 100644
--- a/lisp/git/git.lisp
+++ b/lisp/git/git.lisp
@@ -91,7 +91,7 @@
(when (= return-code 0)
(format stream (shell-wrapper-as-string fetch-command))
(let ((branch (string-trim '(#\Space #\Tab #\Newline) (shell-wrapper-as-string branch-command))))
- (if (position branch '("main" "develop" "master") :test 'string=)
+ (if (position branch '("main" "develop" "development" "master") :test 'string=)
(progn
(format stream "Updating repo ~a on branch ~a~%" dir branch)
(format stream (shell-wrapper-as-string (format nil "cd ~a/~a ; git pull origin ~a" (pwd git-update-task) dir branch))))