diff options
Diffstat (limited to '')
-rwxr-xr-x | lib/container/remove | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/container/remove b/lib/container/remove index 04e7d30..3670ca4 100755 --- a/lib/container/remove +++ b/lib/container/remove @@ -25,10 +25,10 @@ MACHINES="/var/lib/machines" Parameters () { - LONG_OPTIONS="name:,force,verbose," - OPTIONS="n:,f,v," + GETOPT_LONGOPTIONS="name:,force,verbose," + GETOPT_OPTIONS="n:,f,v," - PARAMETERS="$(getopt --longoptions ${LONG_OPTIONS} --name=${COMMAND} --options ${OPTIONS} --shell sh -- ${@})" + PARAMETERS="$(getopt --longoptions ${GETOPT_LONGOPTIONS} --name=${COMMAND} --options ${GETOPT_OPTIONS} --shell sh -- ${@})" if [ "${?}" != "0" ] then |