Install script fixes

main
Yasen Pramatarov 2024-07-20 11:27:15 +03:00
parent 01a497a780
commit acb314f9fe
1 changed files with 4 additions and 1 deletions

View File

@ -86,6 +86,8 @@ version="version $VERSION"
if [[ $1 ]]; then if [[ $1 ]]; then
case $1 in case $1 in
-i | --install) -i | --install)
install
exit 0
;; ;;
-h | --help) -h | --help)
echo -e "$help" echo -e "$help"
@ -109,7 +111,8 @@ else
case $OPTION in case $OPTION in
install) install)
echo 'install..' install
exit 0
;; ;;
help) help)
echo -e "$help" echo -e "$help"