diff options
-rw-r--r-- | guix/scripts/pull.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guix/scripts/pull.scm b/guix/scripts/pull.scm index 6d1914f7c2..0339b149fa 100644 --- a/guix/scripts/pull.scm +++ b/guix/scripts/pull.scm @@ -125,8 +125,7 @@ Download and deploy the latest version of Guix.\n")) (alist-cons 'ref `(commit . ,arg) result))) (option '("branch") #t #f (lambda (opt name arg result) - (alist-cons 'ref `(branch . ,(string-append "origin/" arg)) - result))) + (alist-cons 'ref `(branch . ,arg) result))) (option '(#\p "profile") #t #f (lambda (opt name arg result) (alist-cons 'profile (canonicalize-profile arg) |