1
0
Fork 0

remove compilation from dotsync

This commit is contained in:
Luca Bilke 2023-12-14 13:14:20 +01:00
parent 8e2805e69e
commit 44ff37ce34
1 changed files with 0 additions and 10 deletions

View File

@ -44,14 +44,4 @@ else
stow -t "$HOME" dots || printf "%b" "${RED}Failed to run stow!$NC\n"
fi
printf "%b" "${BOLD}Recompile/Install src files? ${GREEN}Y/N?$NC\n"
read -r ans
[ "$ans" = "y" ] && for f in "$DOTS_DIR"/.local/src/*; do
if ! cd "$f"; then
printf "%b" "${RED}Could not CD into $f$NC\n"
exit
fi
sudo make install
done
printf "%b" "$BOLD${BLUE}Dotfiles Synced Successfully!$NC\n"