refactor
This commit is contained in:
parent
acceccda87
commit
a49c54fc41
12
install.sh
12
install.sh
|
@ -6,6 +6,8 @@ ORANGE='\033[0;33m'
|
||||||
BLUE='\033[0;34m'
|
BLUE='\033[0;34m'
|
||||||
NC='\033[0m' # No Color
|
NC='\033[0m' # No Color
|
||||||
|
|
||||||
|
skip=0
|
||||||
|
|
||||||
# https://stackoverflow.com/questions/5947742/how-to-change-the-output-color-of-echo-in-linux
|
# https://stackoverflow.com/questions/5947742/how-to-change-the-output-color-of-echo-in-linux
|
||||||
prompt() {
|
prompt() {
|
||||||
case ${1} in
|
case ${1} in
|
||||||
|
@ -37,7 +39,6 @@ _usage() {
|
||||||
"
|
"
|
||||||
}
|
}
|
||||||
|
|
||||||
skip=0
|
|
||||||
|
|
||||||
_skip_ahead() {
|
_skip_ahead() {
|
||||||
amount=$1
|
amount=$1
|
||||||
|
@ -142,5 +143,12 @@ main() {
|
||||||
_parse_args "assert_arg" "${argvs[@]}"
|
_parse_args "assert_arg" "${argvs[@]}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
init() {
|
||||||
|
if [ $# -eq 0 ]; then
|
||||||
|
prompt -e "ERROR: This script needs at least one argument"
|
||||||
|
else
|
||||||
|
main "${@}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
main "${@}"
|
init "${@}"
|
||||||
|
|
Loading…
Reference in New Issue