From ca272a7629717d73753bafdeb2029883e6240ebd Mon Sep 17 00:00:00 2001 From: David Florness Date: Tue, 2 Feb 2021 19:21:03 -0500 Subject: [PATCH] Add script "bump" to automatically pull and stage package updates I hope to eventually run a bot with this script every week to keep packages up-to-date. --- bump | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 bump diff --git a/bump b/bump new file mode 100755 index 0000000..824377d --- /dev/null +++ b/bump @@ -0,0 +1,11 @@ +#!/bin/sh +tmpfile=$(mktemp) +cat <$tmpfile +$(cat ./init.el) + +(straight-pull-all) +(straight-freeze-versions) +EOF +emacs --batch -l $tmpfile +rm $tmpfile +git add ./straight/versions -- 2.38.4