diff options
-rwxr-xr-x | lib/container/remove | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/container/remove b/lib/container/remove index 404b80d..208de3d 100755 --- a/lib/container/remove +++ b/lib/container/remove @@ -171,7 +171,7 @@ case "${FORCE}" in echo -n "'${NAME}': remove container '${NAME}' [y|N]? " read FORCE - FORCE="$(echo ${FORCE} | tr [A-Z] [a-z])" + FORCE="$(echo ${FORCE} | tr '[A-Z]' '[a-z]')" case "${FORCE}" in y|yes) |