From cf8392af0251d19c1606c5a160ba361fd6477506 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Sat, 13 Mar 2021 21:22:02 -0500 Subject: [PATCH] FIX add diagnostic printing thing --- dot_bin/executable_bootstrap_pkgs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dot_bin/executable_bootstrap_pkgs b/dot_bin/executable_bootstrap_pkgs index e6eb2b8..3b4225e 100644 --- a/dot_bin/executable_bootstrap_pkgs +++ b/dot_bin/executable_bootstrap_pkgs @@ -66,6 +66,8 @@ run_yay() { # call emacs once to initialize it sudo -u "$home_user" emacs -batch -l "$emacs_dir/init.el" # get a list of packages emacs needs + sudo -u "$home_user" emacs -batch -l "$emacs_dir/init.el" --eval \ + '(print (format "pkgs: %s" (s-join " " (nd/get-aur-dependencies t))))' IFS=' ' read -r -a emacs_pkgs \ < <(sudo -u "$home_user" emacs -batch -l "$emacs_dir/init.el" --eval \ '(print (format "pkgs: %s" (s-join " " (nd/get-aur-dependencies t))))' \