From ab99f224218d0576b44bbc9e3dd7455eae869e92 Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Sun, 11 Aug 2024 20:14:05 -0500 Subject: macos needs --batch option --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index 8f6b57b..506e59e 100755 --- a/install +++ b/install @@ -35,7 +35,7 @@ find -L -- . -type f -name "*\.org" | while read -r file; do done find -L -- . -type f -name "*\.org\.gpg" | while read -r file; do echo " installing $file..." - gpg -d "$file" 1> tmp.org 2>> ~/.update-home.log + gpg -d --batch "$file" 1> tmp.org 2>> ~/.update-home.log emacs --batch tmp.org -f package-initialize --eval '(org-babel-tangle)' >> ~/.update-home.log 2>&1 rm tmp.org done -- cgit v1.2.3