From 353da315c49b4294ad7a507c33f7292b7d682082 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Wed, 23 Sep 2020 11:13:10 -0400 Subject: fix(gs/emacs): Don't double up on branch prefix 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 --- users/glittershark/emacs.d/config.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/users/glittershark/emacs.d/config.el b/users/glittershark/emacs.d/config.el index 3ca913805e..532579b52c 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"))) -- cgit 1.4.1