Don't ask to clone dotfiles if already done
This commit is contained in:
parent
29da5e09bc
commit
62bf218d99
12
tforgione.sh
12
tforgione.sh
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue