Don't ask to clone dotfiles if already done

This commit is contained in:
2019-05-03 10:20:01 +02:00
parent 29da5e09bc
commit 62bf218d99

View File

@@ -155,12 +155,14 @@ clone_dotfiles() {
}
configure_dotfiles() {
yes_no_ask "do you wish to configure the dotfiles ?"
if [ $? -ne 0 ]; then
return
fi
if [ ! -d $HOME/.config/dotfiles ]; then
yes_no_ask "do you wish to configure the dotfiles ?"
if [ $? -ne 0 ]; then
return
fi
clone_dotfiles
clone_dotfiles
fi
}
configure_shell() {