Corrected getting url input

This commit is contained in:
Hector FROHLICH CORTEZ 2021-09-17 15:29:49 +02:00
parent 15eac5679f
commit 47a45c30c0
1 changed files with 4 additions and 1 deletions

View File

@ -94,7 +94,10 @@ source libutils.sh
gitService=""
while [ "$gitService" != "" ]; do read f_readYesNo "Git url (ex. github.com or git.disroot.org): "; done
f_dialog_input "Git url (ex. github.com or git.disroot.org): "
if [ $? -eq 0 ]; then gitService=$f_dialog_RETURNED_VALUE; fi
while [ "$gitService" = "" ]; do read gitService; done
ssh -T git@$gitService