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.
1 files changed, 11 insertions(+), 0 deletions(-) A bump
A bump => bump +11 -0
@@ 0,0 1,11 @@ +#!/bin/sh +tmpfile=$(mktemp) +cat <<EOF >$tmpfile +$(cat ./init.el) + +(straight-pull-all) +(straight-freeze-versions) +EOF +emacs --batch -l $tmpfile +rm $tmpfile +git add ./straight/versions