aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-08-11 20:14:05 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-08-11 20:14:05 -0500
commitab99f224218d0576b44bbc9e3dd7455eae869e92 (patch)
tree9283e43f23cc48cf79063e0f1b898d3ef6467e2c /install
parent2d8e9b82ae8f9d9d556b66d142ae1bc327947351 (diff)
macos needs --batch option
Diffstat (limited to 'install')
-rwxr-xr-xinstall2
1 files changed, 1 insertions, 1 deletions
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