diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-09-23T15·13-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-09-23T15·55+0000 |
commit | 353da315c49b4294ad7a507c33f7292b7d682082 (patch) | |
tree | d10e304c5333120e7cfaa08fb39507644bea0a08 /users | |
parent | 4f7bb40a31bb9b7776abc4e83cfca052980e183c (diff) |
fix(gs/emacs): Don't double up on branch prefix r/1814
magit-read-org-clubhouse-branch-name returns the branch with the prefix in it already, so we don't need to add it again here. Change-Id: I0e753173bc366a8458ccd38a936ae078bbac79f8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1999 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'users')
-rw-r--r-- | users/glittershark/emacs.d/config.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/users/glittershark/emacs.d/config.el b/users/glittershark/emacs.d/config.el index 3ca913805eca..532579b52c3f 100644 --- a/users/glittershark/emacs.d/config.el +++ b/users/glittershark/emacs.d/config.el @@ -609,9 +609,7 @@ "origin/master"))) (if (magit-rev-verify start-point) (when-let ((desc (magit-read-org-clubhouse-branch-name))) - (list - (format "gs/ch%d/%s" story-id desc) - start-point)) + (list desc start-point)) (user-error "Not a valid starting point: %s" choice))) (user-error "No currently clocked-in clubhouse story"))) |