From 884fa0a5421cf6c93469249e2d0e85ca9bd84877 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Mon, 11 Aug 2025 17:12:14 -0700 Subject: [PATCH] [setup.sh] Build fortunes file in setup.sh --- setup.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.sh b/setup.sh index cd03e50..758c4bf 100755 --- a/setup.sh +++ b/setup.sh @@ -54,6 +54,11 @@ function matches_skip_item { return 1 } +function build_fortunes { + echo "Building fortunes file" + (cd Fortune && make) +} + print -P " %BHome:%b $HOME" print -P " %BDotfiles:%b $dotfiles_dir" print -P "%BSkip Items:%b $skipitems\n" @@ -163,4 +168,6 @@ if (( $configure_vim )); then $VIM +PlugInstall +qall fi +build_fortunes + exit 0