From 0b2b5d1c6c6b969bca89081509c424c0c1add537 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 21 Aug 2019 00:09:28 -0400 Subject: [PATCH] Install & track from straight.el's develop branch --- core/core-packages.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/core-packages.el b/core/core-packages.el index e54ca1ccd..a240cacc0 100644 --- a/core/core-packages.el +++ b/core/core-packages.el @@ -90,7 +90,8 @@ missing) and shouldn't be deleted.") (if value (setq package-selected-packages value))) ;;; straight -(setq straight-cache-autoloads nil ; we already do this, and better. +(setq straight-repository-branch "develop" + straight-cache-autoloads nil ; we already do this, and better. ;; Doom doesn't encourage you to modify packages in place. Disabling this ;; makes 'doom refresh' instant (once everything set up), which is much ;; nicer UX than the several seconds modification checks. @@ -185,7 +186,8 @@ necessary package metadata is initialized and available for them." (file-readable-p bootstrap-file)) (with-current-buffer (url-retrieve-synchronously - "https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el" + (format "https://raw.githubusercontent.com/raxod502/straight.el/%s/install.el" + straight-repository-branch) 'silent 'inhibit-cookies) (goto-char (point-max)) (eval-print-last-sexp)))