openMF / mojafos

A Deployable Package for Mifos/Fineract, Payment Hub EE, and Mojaloop (Mojafos)
Apache License 2.0
7 stars 5 forks source link

(fix) Update -n to -k in the getopts string for correct handling #53

Closed Abhinavcode13 closed 4 months ago

elijah0kello commented 4 months ago

What is the relevance of this change ?

Abhinavcode13 commented 4 months ago
case "${OPTION}" in
            m)      mode_opt="${OPTARG}"
            ;;
            k)      k8s_distro="${OPTARG}"
            ;;
            d)      debug="${OPTARG}"
            ;;
            a)      apps="${OPTARG}"
            ;;
            f)      fineract_instansces="${OPTARG}"
            ;;
            e)      environment="${OPTARG}"
            ;;
            v)      k8s_user_version="${OPTARG}"
            ;;
            u)      k8s_user="${OPTARG}"
            ;;
            h|H)    showUsage

Here in the previous version there was no option related to n specifically.