Fixing bug in skeleton

This commit is contained in:
Alex Epstein 2017-08-20 13:44:15 -04:00
parent b02ae720ae
commit 38d27ac0b2
1 changed files with 2 additions and 1 deletions

View File

@ -104,7 +104,8 @@ while getopts "uvh" opt; do
v) echo "Version $currentVersion"
exit 0
;;
u) checkInternet || exit 1
u) getConfiguredClient || exit 1
checkInternet || exit 1
update
exit 0
;;